Class ManualIndexDataProvider
Defines IIndexDataProvider that provides manually set index data values
Inheritance
ManualIndexDataProvider
Inherited Members
Namespace:
Assembly: .dll
Syntax
public class ManualIndexDataProvider extends indexDataProvider.DoubleValueIndexProvider
Constructors
ManualIndexDataProvider()
Declaration
public ManualIndexDataProvider()
Methods
addIndexValue(double value)
Appends new index value
Declaration
public final void addIndexValue(double value)
Parameters
| Type | Name | Description |
|---|---|---|
| double | value | The index value to append |
addIndexValue(int index, double value)
Insert new index value at specified index
Declaration
public final void addIndexValue(int index, double value)
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | The position to insert new value at |
| double | value | The index value to insert |
clearIndexData()
Removes all index values from this provider instance
Declaration
public final void clearIndexData()
onIndexValuesChanged()
Called when index value changed.
Declaration
protected void onIndexValuesChanged()
removeIndexAt(int index)
Removes index value at specified index
Declaration
public final void removeIndexAt(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | The position to remove value at |
setIndexValue(int index, double value)
Update index value at specified index
Declaration
public final void setIndexValue(int index, double value)
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | The position to update value at |
| double | value | The new index value |