hi,
I couldn't figure out where can I capture event like OnChangeSelectedSeries and OnAddSeries at TChartListBox.
Thanks.
Fang
where is OnChangeSelectedSeries event of TChartListBox
Hi,
you could use the OnOtherItemsChange and the OnRefresh events of the TChartListBox component.
you could use the OnOtherItemsChange and the OnRefresh events of the TChartListBox component.
Code: Select all
procedure TForm1.ChartListBox1OtherItemsChange(Sender: TObject);
begin
showmessage('Selected index changed');
end;
procedure TForm1.ChartListBox1Refresh(Sender: TObject);
begin
showmessage('check here which series has been added');
end;
Pep Jorge
http://support.steema.com
http://support.steema.com