Within a line chart I want to format the number value in the label. I am looping through the series. What object/property do I need to use to format this value?
foreach (ChartSerie cs in chart.Series)
{
cs.DataLabels.NumberFormat = "#,##0"; <- this does not do it for me..
}