Page 1 of 1

Chartlistbox

Posted: Wed Apr 11, 2007 3:44 pm
by 9337510
Is there anyway I can show only series from number 3 up.
ie with 5 series I only want to show 3,4, and 5.

Any ideas?

Thanks Richard

Posted: Thu Apr 12, 2007 8:03 am
by yeray
Hi Richard,

You should use something as following:

Code: Select all

ChartListBox1.ClearItems;
ChartListBox1.AddItem('Series3',Series3);
ChartListBox1.AddItem('Series4',Series4);
ChartListBox1.AddItem('Series5',Series5);

Posted: Thu Apr 12, 2007 8:20 am
by 9337510
Thanks I will try that - it didnt work at my first go but I probably got something wrong!

Richard