I want to edit the data of the curves within a TChart by ChartEditor, but don't know how to do it in runtime. In addition, I have 4 TChart in my application. How to link the ChartEditor to the right TChart ?
(The curves (TLineSeries) are also created in runtime)
Thank you in advance
Patrick
How to user ChartEditor to edit the data
-
- Newbie
- Posts: 20
- Joined: Tue Jul 03, 2007 12:00 am
- Contact:
Hi Patrick,
You can use the same editor for one chart or for another one like follows:
Was that what you were looking for?
You can use the same editor for one chart or for another one like follows:
Code: Select all
ChartEditor1.Chart := Chart1;
ChartEditor1.Execute;
//...
ChartEditor1.Chart := Chart2;
ChartEditor1.Execute;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |