SciChart® the market leader in Fast WPF Charts, WPF 3D Charts, iOS Chart, Android Chart and JavaScript Chart Components
Hello,
in SciChart Android the vertically-oriented axis title is displayed like this:
I’d like to rotate the title -180 degrees, so that it looks like that (that is the default behaviour in SciChart iOS):
Is there a way to achieve that?
Hi Anna,
Thanks for your inquiry.
Well you can use AxisTitleOrientation property which is provided by all axis implementations. If you’re using our builder classes then code should look like this:
IAxis yAxis = sciChartBuilder.newNumericAxis().withAxisTitle("Title").withAxisTitleOrientation(AxisTitleOrientation.VerticalFlipped).build();
Hope this will help you!
Best regards,
Yura
Hi Yura,
thank you for the answer. The VerticalFlipped enum item wasn’t available in SciChart version I was using. Updated the framework and applied, works as expected. Thanks!
Please login first to submit.