The first call to TChartGalleryPanel1.SelectedChart[0] or TChartGalleryPanel1.GetASeries() works fine, but I need multiple instances of the same series 'type'. There is a GetSeriesClass() method, but it is undocumented - is that what I should be using?
I'm sure that there should be a simple way to do this but:
Code: Select all
series := TChartGalleryPanel1.SelectedChart[0];
newseries := series.Create(self);
chart.AddSeries(newseries);
Code: Select all
newseries := series.Clone();
Thanks for any help that you can give.