
iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCISolidBrushStyle
@interface SCISolidBrushStyle : SCIBrushStyle
Defines brush style which allows to fill shapes with solid color.
-
Deprecated
SCISolidBrushStyle.defaultBrushStyle is deprecated. Please use SCIBrushStyle.DEFAULT instead
Provides default instance of
SCISolidBrushStyle
.Declaration
Objective-C
@property (class, nonatomic, readonly) __deprecated_msg("SCISolidBrushStyle.defaultBrushStyle is deprecated. " "Please use SCIBrushStyle.DEFAULT instead") SCISolidBrushStyle *defaultBrushStyle;
-
Creates a new
SCISolidBrushStyle
instance.Declaration
Objective-C
- (nonnull instancetype)initWithColorCode:(unsigned int)colorCode;
Parameters
colorCode
The fill color
ARGB
code for this brush style. -
Creates a new
SCISolidBrushStyle
instance.Declaration
Objective-C
- (nonnull instancetype)initWithColor:(nonnull UIColor *)color;
Parameters
color
The fill color for this brush style.