Hey,
I have an chart with several series, the chart is set to stack to 100%.
Is it possible to get the point lables to display the % that series plot takes up of the full 100% instead of the value?
Thanks
Leah
Yes. Use chart.AllSeries.PointLabels.Format to control what gets displayed. See docs. for details.
Hi Smartie
In order to get the point lables to display the percentage that series plot takes up of the full 100% instead of the value, please check following code:
chart1.AllSeries.PointLabels.Format = "%P %%";
-- Pipon
Excellent, thank you.
Here is the chart I have made using the above help:
Why don't all the stack totals add up to 100%? Some are 99%, others 101%?