Interface IXDataSeries<TX,TY>
Defines the interface to an X DataSeries, a series containing X data-points.
Implements
com.scichart.charting.model.dataSeries.IXDataSeriesValues<TX,TY>
Namespace:
Assembly: .dll
Syntax
public interface IXDataSeries<TX,TY> extends dataSeries.IXDataSeriesValues<TX,TY>
Type Parameters
| Name | Description |
|---|---|
| TX | |
| TY |
Methods
removeAt(int index)
Removes data points at specified location
Declaration
public abstract void removeAt(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | The index of data point to remove |
removeRange(int startIndex, int count)
Removes the range of data points
Declaration
public abstract void removeRange(int startIndex, int count)
Parameters
| Type | Name | Description |
|---|---|---|
| int | startIndex | The index of the first data point to remove |
| int | count | The amount of points to remove |
Implements
com.scichart.charting.model.dataSeries.IXDataSeriesValues<TX,TY>