Hello.
I am attempting to have a Pie chart using the ASP.Net Charting controls. Everything's fine. The X value is the name of a specific item with the Y value the amount. The Legend is displaying the X value, the size of the slices of the pie are correspond to the Y value. All is well.
However I also have the value, as a label, attached to the chart and I would like it to display the Y value instead. How can I do this? I have tried the following:
series.AxisLabel = "#VALY";
series.LabelFormat = "#VALY";
series.Label = "#VALY";
Any advice?
Thanks!