Hello,
I am using a column chart and I want to display the data values on the column chart, the values are being displayed but there is one issue.
For Eg., The values are smearing into the column chart columns and the chart itself making it difficult to read the values. Also, the x-axis values are truncated and i would like to know how to expand so that the data on x-axis is visible.
Unfortunately I can't see the image, but about displaying the data values you could try:
appearance.VerticalAlign = StringAlignment.Far;
More about this:
http://help.infragistics.com/Help/NetAdvantage/NET/2007.3/CLR2.0/html/Chart_Apply_Chart_Text_Labels.html
With:
this.UltraChart1.Axis.X.Extent = 150;
you can control the breadth of the x-axis.