Page 1 of 1
SeriesGroups -- index by name
Posted: Wed Feb 01, 2006 5:41 pm
by 9639219
Since we give the SeriesGroup a name when it is created, it would be great if we could index it by name when we reference it as well.
Posted: Fri Feb 24, 2006 9:29 am
by narcis
Hi dhait,
Sorry for not having replied earlier. I've added your request to our wish-list to be considered for future releases.
Posted: Tue Mar 14, 2006 2:26 pm
by David
Done, for future version 8:
var tmp : TSeriesGroup;
tmp:=Chart1.SeriesList.Groups.FindByName('Foo');
if tmp<>nil then ...
Optionally case-sentitive:
tmp:=Chart1.SeriesList.Groups.FindByName('Foo', True);