Hi: I have a bar chart that I add value marks to (TChart3.Series(0).Marks). I like that feature very much because you can move the value marks around and they stay tied to the bar with a line.
Is it possible to apply only one mark at a time? Instead of having a mark on every bar on my plot I'd like to just put one on a user selected bar (one at a time).
Regards,
russ
just one mark?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Russ,
One option would be using marks' DrawEvery property:
The other option would be using annotation tools as told here.
One option would be using marks' DrawEvery property:
Code: Select all
TChart1.Series(0).Marks.DrawEvery = TChart1.Series(0).Count
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 |