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.

  • Defines the type of the X-Data.

    Declaration

    Objective-C

    SCIDataType _xType
  • Defines the type of the Y-Data.

    Declaration

    Objective-C

    SCIDataType _yType
  • Provides the ISCIMath instance for operations with X-Data.

    Declaration

    Objective-C

    id<ISCIMath> _xMath
  • Provides the ISCIMath instance for operations with Y-Data.

    Declaration

    Objective-C

    id<ISCIMath> _yMath
  • 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.