0
Under review
Is it possible to disable Axis? And how to turn scales inside the axis?
I would love to be able to plot against a really small area, therefor I would like to disable axis naming and have only the Axis itself draw, without text?
As a further going question, is there a way to put the scale inside, which would also support the Idea of drawing in a really small area?
As a further going question, is there a way to put the scale inside, which would also support the Idea of drawing in a really small area?
Customer support service by UserEcho
IsAxisVisible
tofalse
. If you want to draw the tick lines, but not the labels, try settingLabelFormatter = x => null
(I have not tested this)Showing the labels on the inside is currently not supported, but it can be implemented in a custom axis class. This feature can also be added to the issue tracker!