How to force Marks to display over series

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Wysu
Newbie
Newbie
Posts: 21
Joined: Wed Apr 27, 2005 4:00 am

How to force Marks to display over series

Post by Wysu » Wed Jul 22, 2009 10:15 am

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

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: How to force Marks to display over series

Post by Yeray » Wed Jul 22, 2009 11:16 am

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.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Wysu
Newbie
Newbie
Posts: 21
Joined: Wed Apr 27, 2005 4:00 am

Re: How to force Marks to display over series

Post by Wysu » Wed Jul 22, 2009 12:09 pm

Thanks for your answers.

Sorry for my bad search in previous topics.

Regards.

Post Reply