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
Stacked Bar chart Only shows Top Marks
Re: Stacked Bar chart Only shows Top Marks
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:
I hope will helps.
Thanks,
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;
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: Stacked Bar chart Only shows Top Marks
Hi Sandra
thanks , its works .
thanks , its works .