Clears the value data of the graph.
[Visual Basic]
Public Sub ClearValue( _
ByVal itemIndex As Integer, _
ByVal seriesIndex As Integer, _
ByVal update As Boolean _
)
[C#]
public void ClearValue(
int itemIndex,
int seriesIndex,
bool update
);
Parameters
-
itemIndex
- Item index.
-
seriesIndex
- Series index.
-
update
- Value that indicates whether the display panel is updated.
Example
How to clear the value data and update the display panel.
awGraph1.ClearValue(itemIndex, seriesIndex, True)
awGraph1.ClearValue(itemIndex, seriesIndex, true);
See Also
AwGraph Class | Asterworld.Graph Namespace