It would be extremely helpful for me to be able to set the Marks.Style property to "Custom." Along with this enumeration/option would be the ability to manually/programmatically set the Text for a given item
Similar to this syntax :
tChart.Series(0).Marks.Item(x).Text = "My Custom Text"
'(x = row index)
I am able to do this with an old "Visual Studio First Impression" graphing tool, and I find it very useful for my appliciations.
Thanks
- john.
Custom Marks Text
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi john,
You can already do this at the moment of populating the series as:
Another option is using the OnGetSeriesMark event and its MarkText event.
You can already do this at the moment of populating the series as:
Code: Select all
TChart1.Series(0).Add Rnd(100), "My Custom Text", clTeeColor
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |