SciChart® the market leader in Fast WPF Charts, WPF 3D Charts, iOS Chart, Android Chart and JavaScript Chart Components
I hope you can help me, please. Is it possible to remove the lines that protrude on the edge of the graphics, as shown in the image? If so, what would be the procedure?
Thank you very much in advance…
Hi Julio,
Please try to set drawMinorTicks and drawMajorTicks flags to false for your X and Y axes. You can find more information about these properties in our documentation. Here is the code sample:
final IAxis axis = new NumericAxis(getActivity());
axis.setDrawMajorTicks(false);
axis.setDrawMinorTicks(false);
Hope this will help you!
Best regards,
Yura
Please login first to submit.