iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
ISCIXyzDataSeries
@protocol ISCIXyzDataSeries <ISCIXyzDataSeriesValues, ISCIXDataSeries>
Defines the interface to an Xyz DataSeries, a series containing X, Y and Z data-points.
-
Gets the type of the Z-Data.
Declaration
Objective-C
@property (nonatomic, readonly) SCIDataType zType;Swift
var zType: SCIDataType { get }
-
Appends X, Y and Z value to this series.
Declaration
Objective-C
- (void)appendX:(nonnull id<ISCIComparable>)x y:(nonnull id<ISCIComparable>)y z:(nonnull id<ISCIComparable>)z;Parameters
xThe X value.
yThe Y value.
zThe Z value.
-
Appends X, Y and Z values to this series.
Declaration
Objective-C
- (void)appendArrayX:(nonnull NSArray<id<ISCIComparable>> *)xArray y:(nonnull NSArray<id<ISCIComparable>> *)yArray z:(nonnull NSArray<id<ISCIComparable>> *)zArray;Parameters
xArrayThe X values.
yArrayThe Y values.
zArrayThe Z values.
-
Appends X, Y and Z values to this series.
Declaration
Objective-C
- (void)appendValuesX:(nonnull id<ISCIValues>)xValues y:(nonnull id<ISCIValues>)yValues z:(nonnull id<ISCIValues>)zValues;Swift
func append(x xValues: any ISCIValues, y yValues: any ISCIValues, z zValues: any ISCIValues)Parameters
xValuesThe X values.
yValuesThe Y values.
zValuesThe Z values.
-
Inserts X, Y and Z value at specified index.
Declaration
Objective-C
- (void)insertX:(nonnull id<ISCIComparable>)x y:(nonnull id<ISCIComparable>)y z:(nonnull id<ISCIComparable>)z at:(NSInteger)index;Parameters
xThe X value.
yThe Y value.
zThe Z value.
indexThe index to insert point at.
-
Inserts X, Y and Z values at specified index.
Declaration
Objective-C
- (void)insertArrayX:(nonnull NSArray<id<ISCIComparable>> *)xArray y:(nonnull NSArray<id<ISCIComparable>> *)yArray z:(nonnull NSArray<id<ISCIComparable>> *)zArray at:(NSInteger)startIndex;Parameters
xArrayThe X values.
yArrayThe Y values.
zArrayThe Z values.
startIndexThe index to insert points at.
-
Inserts X, Y and Z values at specified index.
Declaration
Objective-C
- (void)insertValuesX:(nonnull id<ISCIValues>)xValues y:(nonnull id<ISCIValues>)yValues z:(nonnull id<ISCIValues>)zValues at:(NSInteger)startIndex;Swift
func insert(x xValues: any ISCIValues, y yValues: any ISCIValues, z zValues: any ISCIValues, at startIndex: Int)Parameters
xValuesThe X values.
yValuesThe Y values.
zValuesThe Z values.
startIndexThe index to insert points at.
-
Updates X value at specified index.
Declaration
Objective-C
- (void)updateX:(nonnull id<ISCIComparable>)x at:(NSInteger)index;Parameters
xThe X value.
indexThe index of point to update.
-
Updates Y value at specified index.
Declaration
Objective-C
- (void)updateY:(nonnull id<ISCIComparable>)y at:(NSInteger)index;Parameters
yThe Y value.
indexThe index of point to update.
-
Updates Z value at specified index.
Declaration
Objective-C
- (void)updateZ:(nonnull id<ISCIComparable>)z at:(NSInteger)index;Parameters
zThe Z value.
indexThe index of point to update.
-
Updates X, Y and Z value at specified index.
Declaration
Objective-C
- (void)updateX:(nonnull id<ISCIComparable>)x y:(nonnull id<ISCIComparable>)y z:(nonnull id<ISCIComparable>)z at:(NSInteger)index;Parameters
xThe X value.
yThe Y value.
zThe Z value.
indexThe index of point to update.
-
Updates X values at specified index.
Declaration
Objective-C
- (void)updateArrayX:(nonnull NSArray<id<ISCIComparable>> *)xArray at:(NSInteger)index;Parameters
xArrayThe X values.
indexThe index of points to start update from.
-
Updates Y values at specified index.
Declaration
Objective-C
- (void)updateArrayY:(nonnull NSArray<id<ISCIComparable>> *)yArray at:(NSInteger)index;Parameters
yArrayThe Y values.
indexThe index of points to start update from.
-
Updates Z values at specified index.
Declaration
Objective-C
- (void)updateArrayZ:(nonnull NSArray<id<ISCIComparable>> *)zArray at:(NSInteger)index;Parameters
zArrayThe Z values.
indexThe index of points to start update from.
-
Updates X, Y and Z values at specified index.
Declaration
Objective-C
- (void)updateArrayX:(nonnull NSArray<id<ISCIComparable>> *)xArray y:(nonnull NSArray<id<ISCIComparable>> *)yArray z:(nonnull NSArray<id<ISCIComparable>> *)zArray at:(NSInteger)index;Parameters
xArrayThe X values.
yArrayThe Y values.
zArrayThe Z values.
indexThe index of point to start update from.
-
Updates X values at specified index.
Declaration
Objective-C
- (void)updateValuesX:(nonnull id<ISCIValues>)xValues at:(NSInteger)index;Swift
func update(x xValues: any ISCIValues, at index: Int)Parameters
xValuesThe X values.
indexThe index of points to start update from.
-
Updates Y values at specified index.
Declaration
Objective-C
- (void)updateValuesY:(nonnull id<ISCIValues>)yValues at:(NSInteger)index;Swift
func update(y yValues: any ISCIValues, at index: Int)Parameters
yValuesThe Y values.
indexThe index of points to start update from.
-
Updates Z values at specified index.
Declaration
Objective-C
- (void)updateValuesZ:(nonnull id<ISCIValues>)zValues at:(NSInteger)index;Swift
func update(z zValues: any ISCIValues, at index: Int)Parameters
zValuesThe Z values.
indexThe index of points to start update from.
-
Updates X, Y and Z values at specified index.
Declaration
Objective-C
- (void)updateValuesX:(nonnull id<ISCIValues>)xValues y:(nonnull id<ISCIValues>)yValues z:(nonnull id<ISCIValues>)zValues at:(NSInteger)index;Swift
func update(x xValues: any ISCIValues, y yValues: any ISCIValues, z zValues: any ISCIValues, at index: Int)Parameters
xValuesThe X values.
yValuesThe Y values.
zValuesThe Z values.
indexThe index of point to start update from.
View on GitHub