TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
-
Wysu
- Newbie
- Posts: 21
- Joined: Wed Apr 27, 2005 4:00 am
Post
by Wysu » Wed Jul 22, 2009 10:15 am
Hi,
I'm using teechart 7.04.
My series are THorizBarSeries, with property :
Changing option Chart.View3D make that marks disapears behind series.
Example :
with view3D := true :
with view3D := false :
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
- Posts: 9612
- Joined: Tue Dec 05, 2006 12:00 am
- Location: Girona, Catalonia
-
Contact:
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.
-
Wysu
- Newbie
- Posts: 21
- Joined: Wed Apr 27, 2005 4:00 am
Post
by Wysu » Wed Jul 22, 2009 12:09 pm
Thanks for your answers.
Sorry for my bad search in previous topics.
Regards.