Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
995
Display DataValue in a stack chart
posted

I have a 2D stack chart, how do I show the value for each part  of the stack bar on the chart?

I tried this but nothing happen:

 ChartTextAppearance t = new ChartTextAppearance();
t.Visible = true;
t.ItemFormatString =
"<DATA_VALUE_ITEM:#0.##>";
t.Row = -2;
t.Column = -2;
t.HorizontalAlign = System.Drawing.
StringAlignment.Center;

I put this piece of code just before I databind the chart.

Thanks

Parents Reply Children
No Data