Hi ,
I would like to know how I can hide or unhide a plot in an ultrachart by using a checkbox please?
Thanks
Hello,
I`m not familar with your scenario, but maybe the best option could be if you are using Series into your chart. Than you could set Visible property to true or false depending of the checkbox. For example:
NumericSeries ns = new NumericSeries();
ns.Visible = false;
Let me know if you have any questions.
Regards
Thanks, do you have a sample to hide and unhide a Series into a chart depending of the checkbox ?