I see references to using
- Series[0].Appearance.ShowLabels = false. But, since there are no explicit series created, this doesn't work.
I've attached an image to demonstrate the issue.
thanks for the help.
Also, I just tried the following in the ItemDatBound event, and it does not seem to affect the display at all (IE: the labels still show up)
foreach (ChartSeries s in myChart.Series) {
s.Appearance.ShowLabels = false;
s.DefaultLabelValue = "";
}