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

TeeChart for ActiveX, COM and ASP
Post Reply
Nuzur
Newbie
Newbie
Posts: 32
Joined: Thu Nov 03, 2005 5:00 am
Contact:

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

Post by Nuzur » Thu Oct 26, 2006 6:22 am

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?

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Thu Oct 26, 2006 8:28 am

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);
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply