ITChart.RefreshData
ITChart
procedure RefreshData;
Type Library
TeeChartx
Description
The RefreshData method refreshes the Chart's pointer to the recordset enabling a Chart to move between dataset records.
Example [Visual Basic]:
Private Sub Command1_Click()
If rst.AbsolutePosition <> 1 Then
rst.MovePrevious
TChart1.RefreshData
End If
End Sub