Hi,
I have created a TShapreSeries on Teechart at designtime and the name of the series is "Series2".
I am trying to change the name of series as below and change a property,
TChartShape* Series2;
Series2->Name = "NewName";
Series2->Active = false; // exception occurs here...
Any clue why is this happening and how to change ar runtime the name.
changing the name of Tshapeseries at runtime
Re: changing the name of Tshapeseries at runtime
Hi MDA team,
I think that what you would like to do is to change the series' title:
I think that what you would like to do is to change the series' title:
Code: Select all
Series2->Title = "NewName";
Series2->Active = false;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |