Nevron Forum

Can't find, how to hide the scale labels

https://www.nevron.com/Forum/Topic5923.aspx

By Atif Riaz - Tuesday, December 6, 2011

Could anybody please show the way to hide scale labels (for example, tick labels of primary Y axis), I can't find in the documentation.
Thanks
By Nevron Support - Tuesday, December 6, 2011

Hi Atif,

You can turn off auto labels using the following code:

NLinearScaleConfigurator scaleY = yAxis.ScaleConfigurator as NLinearScaleConfigurator;
scaleY.AutoLabels = false;

Let us know if you have any questions.