HI!
I had a normal 2D stack chart, to which i was binding my data. The stack chart data values on its bars.
I used the following code to display data values on the bars. When i changed the type to a 3dstackChart, the data labels disappeared. How do i get them back.
t.Visible = true;
t.Row = -2;
t.Column = -2;
MainChart.BarChart.ChartText.Clear();
MainChart.BarChart.ChartText.Add(t);
Sorry, 3d charts do not support ChartTextAppearance. You can submit a feature request to our developer support team using this link:http://es.infragistics.com/gethelp
Is there any way to display labels on the bars for 3d charts?
Ahmad
Text can be added to the 3d chart by using annotations. You can create a box annotation and add it to the chart's annotations using chart.Annotations.Annotations.Add(myAnnotation). However, when using 3d charts, annotation's position can only be specified in pixel or percentage based coordinates. In other words, there's no way to know where your 3d column or bar is positioned on the chart and put the annotation there. Annotations also don't get repositioned when you rotate the 3d chart. Unfortunately, there's currently no other way to accomplish this.