ITeeCommander.OnEditedChart
ITeeCommander

property OnEditedChart: TNotifyEvent;

Type Library
TeeChartx

Description

This event is called when the Chart Editor, called from the TeeCommander panel, is closed.

Example [Visual Basic]:

Private Sub Form_Load()

TeeCommander1.Chart = TChart1

With TChart1

.AddSeries scLine

.Series(0).FillSampleValues 10

End With

End Sub

Private Sub TeeCommander1_OnEditedChart()

MsgBox "Edited!"

End Sub