Page 1 of 1

just one mark?

Posted: Fri Dec 01, 2006 9:40 pm
by 9532946
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

Posted: Mon Dec 04, 2006 9:50 am
by narcis
Hi Russ,

One option would be using marks' DrawEvery property:

Code: Select all

  TChart1.Series(0).Marks.DrawEvery = TChart1.Series(0).Count
The other option would be using annotation tools as told here.