Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1120
chart label's Orientation doesn't work
posted
I did the following but the lables are still horizontal.

ultraChart1.Axis.X.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.
TextOrientation.VerticalLeftFacing;

ultraChart1.DataSource = dt;

ultraChart1.Data.DataBind();

  

  • 17605
    posted

    You can try:

    this.UltraChart1.Axis.X.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;