Ok, I have a simple UltraChart of ScatterChart type. I do a series, it plots a few items, now I need to label those damn things and spent half of a day just to figure that out... Damn charts were suppose to save us time, doing quite the opposite!
And I am not talking about AXIS labels, I am talking about labelling those Triangles that I see on the chart....
Here is my code:
{
}
UltraChart1.Series.Add(myChart);
What to do?
Try adding a ChartText item to the ScatterChart.ChartText collection:
ChartTextAppearance chartText = new ChartTextAppearance();chartText.Row = -2;chartText.Column = -2;chartText.Visible = true;this.ultraChart1.ScatterChart.ChartText.Add(chartText);
You can find a bit more about chart text appearance here:http://help.infragistics.com/Help/NetAdvantage/NET/2007.3/CLR2.0/html/Chart_Apply_Chart_Text_Labels.html