I am creating a set of XYDataPoints and adding them to a series. But when the chart is displayed, the values I have assigned don't display.
I create the points like this:
XYDataPoint point = new XYDataPoint(xValue, yValue, labelValue, false);
And I create the label like this:
//display labels for series data points
dataLabels.Row = chart.ScatterChart.ChartText.Count;
dataLabels.ItemFormatString = "<ITEM_LABEL>";
//apply data labels
chart.ScatterChart.ChartText.Add(dataLabels);
But when the labels display they display the literal "<ITEM_LABEL>"
You can take a look at:
http://forums.infragistics.com/forums/t/7396.aspx