Hello Ng,
I got a Problem with a stacked bar chart, i try to change the orientation of the Labels at the x axis by code, but it's not working. Here is the code i use. Thanks in advance for your help.
Me.UltraChart1.Axis.X.Margin.Far.Value = 5
Me.UltraChart1.Axis.Y2.Margin.Far.Value = 10
Me.UltraChart1.Tooltips.FormatString = "<DATA_VALUE:###,###,###,##0.00>"
Me.UltraChart1.Data.DataBind()
Me.UltraChart1.Axis.X2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing
Here is a screen from my chart ...
This is because you need to change the orientation of the series labels, not item labels:Me.UltraChart1.Axis.X.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing