Page 1 of 1

Mark Item

Posted: Thu Mar 13, 2008 5:08 am
by 9087008
Image

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?

Posted: Thu Mar 13, 2008 10:36 am
by narcis
Hi wisefn,

The first think you could try is toggling AutoMarkPosition:

Code: Select all

     TChart1.Series(0).asPie.AutoMarkPosition = True
You could also use DrawEvery property:

Code: Select all

    TChart1.Series(0).Marks.DrawEvery = 3
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.