SciChart® the market leader in Fast WPF Charts, WPF 3D Charts, iOS Chart, Android Chart and JavaScript Chart Components
Hi,
I am trying to add labels to the x axis but I don’t want the axis line to be visible. numericAxis.drawLabels = true
enables the x axis line also. Is there a way to disable it?
Hi Vidya,
Have you tried to set DrawMinorTicks and DrawMajorTicks to false?
numericAxis.setDrawMinorTicks(false);
numericAxis.setDrawMajorTicks(false);
Best regards,
Yura
Please login first to submit.