Hi,
On the chart editor where you can set the series info, can I set those series names to existing names I have? That way the end user could just check what series they want to use for that chart?
Thanks,
Tom
Chart Editor
Chart Editor
Tom
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Tom,
Yes, you can do this:
or for all the series in the chart:
Yes, you can do this:
Code: Select all
Series1.Title:='MySeriesName';
Code: Select all
for i:=0 to Chart1.SeriesCount-1 do
Chart1[i].Title := 'My Series ' + IntToStr(i+1);
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |