How disable in scBar Series shown value at the top of Bar
How disable in scBar Series shown value at the top of Bar
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?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Nuzur,
You can do that using:
However you may be interested using the property below instead of making them not visible.
You can do that using:
Code: Select all
m_Chart1.Series(0).GetMarks().SetVisible(false);
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 |
Instructions - How to post in this forum |