
iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIDataSeries
@interface SCIDataSeries : SCIDataSeriesCore <ISCIDataSeries> {
SCIDataType _xType;
SCIDataType _yType;
id<ISCIMath> _xMath;
id<ISCIMath> _yMath;
}
A generic abstract base class which defines a generic DataSeries.
See
ISCIXyDataSeries
.
See
SCIXyDataSeries
.
See
ISCIXyyDataSeries
.
See
SCIXyyDataSeries
.
See
ISCIXyzDataSeries
.
See
SCIXyzDataSeries
.
See
ISCIHlDataSeries
.
See
SCIHlDataSeries
.
See
ISCIOhlcDataSeries
.
See
SCIOhlcDataSeries
.
-
Defines the type of the X-Data.
Declaration
Objective-C
SCIDataType _xType
-
Defines the type of the Y-Data.
Declaration
Objective-C
SCIDataType _yType
-
Creates a new
SCIDataSeries
instance.Declaration
Objective-C
- (nonnull instancetype)initWithXType:(SCIDataType)xType yType:(SCIDataType)yType;
Parameters
xType
The type of X-Data.
yType
The type of Y-Data.