Page 1 of 1

How to force Marks to display over series

Posted: Wed Jul 22, 2009 10:15 am
by 9341766
Hi,

I'm using teechart 7.04.

My series are THorizBarSeries, with property :

Code: Select all

MultiBar := mbStacked 
Changing option Chart.View3D make that marks disapears behind series.

Example :
with view3D := true :
Image

with view3D := false :
Image

I try this trick before draw :

Code: Select all

 Serie.Marks.ZPosition := Chart.MaxZOrder +1; 
but it won't work.

I 've probably missed a property, can you please help me.

Regards

Re: How to force Marks to display over series

Posted: Wed Jul 22, 2009 11:16 am
by yeray
Hi Wysu,

Yes, this is a known problem already in the wish list to be fixed in a future release. In the meanwhile, you could:
- Set a negative ArrowLength for all your bar series as explained here
- Move the marks to custom positions as Marjan explained here
- Or you also could use annotations instead of marks. But then you should move the annotations to custom positions too.

Re: How to force Marks to display over series

Posted: Wed Jul 22, 2009 12:09 pm
by 9341766
Thanks for your answers.

Sorry for my bad search in previous topics.

Regards.