Hide labels in pie charts (MS Chart for .Net)
asp.net, c#, data-visualization, mschart
Solution
Chart1.Series[i]["PieLabelStyle"] = "Disabled";
works too, and doesn't need to be set for each datapoint.
Problem
I can't seem to find the property that controls visibility of labels in pie charts. I need to turn the labels off as the information is available in the legend. Anyone know what property I can use in code behind? I tried setting the series labels to nothing `Chart1.Series[i].Label = string.Empty;` but the labels seem to show up anyway.