
iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCISeriesInfo
@interface SCISeriesInfo : SCISeriesInfoCore <ISCIHitTestInfoUpdatable>
Defines a class which contains information about a series, such as name, value, color based on SCIHitTestInfo
values.
-
The parent renderable series.
Declaration
Objective-C
@property (nonatomic, strong, readonly) id<ISCIRenderableSeries> _Nonnull renderableSeries;
-
A point snapped to the
X-Y
value of the series.Declaration
Objective-C
@property (nonatomic) CGPoint xyCoordinate;
-
The type of
ISCIDataSeries
that was hit tested.Declaration
Objective-C
@property (nonatomic) SCIDataSeriesType dataSeriesType;
-
The DataSeriesIndex at the
hit-test
site.Declaration
Objective-C
@property (nonatomic) NSInteger dataSeriesIndex;
-
The value indicating whether the input point is between first and last series point or not
Declaration
Objective-C
@property (nonatomic) BOOL isWithinDataBounds;
-
Creates a new instance of
SCISeriesInfo
class.Declaration
Objective-C
- (nonnull instancetype)initWithSeries:(nonnull id<ISCIRenderableSeries>)series;
Parameters
series
The parent renderable series.
-
Updates this series info with the latest values from renderable series.
Declaration
Objective-C
- (void)update;