Page 1 of 1

How disable in scBar Series shown value at the top of Bar

Posted: Thu Oct 26, 2006 6:22 am
by 9089070
On the top of every bar show itself value. It's good when not many value and bad when many values represent on screen. How to disable this property?

Posted: Thu Oct 26, 2006 8:28 am
by narcis
Hi Nuzur,

You can do that using:

Code: Select all

	m_Chart1.Series(0).GetMarks().SetVisible(false);
However you may be interested using the property below instead of making them not visible.

Code: Select all

	m_Chart1.Series(0).GetMarks().SetDrawEvery(5);