Stacked Bar chart Only shows Top Marks

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
rino
Newbie
Newbie
Posts: 26
Joined: Wed May 23, 2007 12:00 am

Stacked Bar chart Only shows Top Marks

Post by rino » Tue Mar 15, 2011 11:24 am

HI
I have a bar chart which is stacked
bar.MultiBar = MultiBars.Stacked
the series have marks for each value.
However when viewing the graph in 2D I only see the top most mark in each bar.
in 3D I see all the marks.

Please help
Thanks

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: Stacked Bar chart Only shows Top Marks

Post by Sandra » Tue Mar 15, 2011 12:39 pm

Hello rino,

In latest maintenance releases, we have added the property of Marks OnTop which gets or sets a value which determines if Series Marks are always drawn on top of all other Series in the Chart. Please, could you check it solve your problem with Marks? You can use property as do in next lines of code:

Code: Select all

   
            bar1.Marks.OnTop = true;
            bar2.Marks.OnTop = true;
            bar3.Marks.OnTop = true;
            bar4.Marks.OnTop = true;
I hope will helps.

Thanks,
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

rino
Newbie
Newbie
Posts: 26
Joined: Wed May 23, 2007 12:00 am

Re: Stacked Bar chart Only shows Top Marks

Post by rino » Tue Mar 15, 2011 1:27 pm

Hi Sandra
thanks , its works .

Post Reply