ITChart.TimerEnabled
ITChart

property TimerEnabled: WordBool;

Type Library
TeeChartx

Description
Enables/disables Chart's timer (true/false). See the TimerInterval property and OnTimer event.

Example [Visual Basic]:

This example adds a new point to a series every half a second:

Private Sub Form_Load()

With TChart1

.TimerEnabled = True

.TimerInterval = 500

.AddSeries scLine

End With

End Sub

Private Sub TChart1_OnTimer()

With TChart1

.Series(0).Add Rnd(100), "", clTeeColor

End With

End Sub