Page 1 of 1

Stacked Bar chart Only shows Top Marks

Posted: Tue Mar 15, 2011 11:24 am
by 14045267
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

Re: Stacked Bar chart Only shows Top Marks

Posted: Tue Mar 15, 2011 12:39 pm
by 10050769
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,

Re: Stacked Bar chart Only shows Top Marks

Posted: Tue Mar 15, 2011 1:27 pm
by 14045267
Hi Sandra
thanks , its works .