Gets the value data of the graph.
[Visual Basic]
Public Function GetValue( _
ByVal itemIndex As Integer, _
ByVal seriesIndex As Integer _
) As Single
[C#]
public float GetValue(
int itemIndex,
int seriesIndex
);
Parameters
-
itemIndex
- Item index.
-
seriesIndex
- Series index.
Return Value
Value data. If the value is not set, it is NaN.
Example
How to get the value data of the graph.
Dim f As single = awGraph1.GetValue(itemIndex, seriesIndex)
float f = awGraph1.GetValue(itemIndex, seriesIndex);
See Also
AwGraph Class | Asterworld.Graph Namespace