Mark Item
Mark Item
I use TeeChart6Activex..
The pie when drawing the chart,
The value when the difference is small, the mark piles up..
it does not become the place where it wants approaching
with the Series(0).Marks.item(0).Visible = False
It isn't supported from TeeChart6.0?
And It will be able to solve and there isn't a different method?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi wisefn,
The first think you could try is toggling AutoMarkPosition:
You could also use DrawEvery property:
Finally you can do something as what Pep suggested here. This is a TeeChart for .NET thread but the same can be applied to the ActiveX version.
Hope this helps.
The first think you could try is toggling AutoMarkPosition:
Code: Select all
TChart1.Series(0).asPie.AutoMarkPosition = True
Code: Select all
TChart1.Series(0).Marks.DrawEvery = 3
Hope this helps.
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 |