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
730
Series label orientation
posted

I am using a 2-d Column Chart. When acertain value is picked, I wanted the series label on the x-axis to be displayed in horizontal orientation and verticalleftfacing for the rest. To do this, I've added this code

If facvalue = "0" Then

ChartGenre.Axis.X.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal

Else

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

End If

But the orientation is always horizontal. How to fix that?

Thanks