It is the same instance that is used for both x and y, so it is difficult to change the tick mark behavior of only one axis.
You would need to supply a new generator that does the same for the y-axis but a different thing for the x-axis.
There should be two separate instances, one for each axis.
Tick marks are generated via a
TickMarkGenerator
instance inCoordSysRenderer
https://github.com/hageldave/JPlotter/blob/82d78a889a365fcda0c98fa27afcd5be39a42cc9/jplotter/src/main/java/hageldave/jplotter/renderers/CoordSysRenderer.java#L480-L489It is the same instance that is used for both x and y, so it is difficult to change the tick mark behavior of only one axis. You would need to supply a new generator that does the same for the y-axis but a different thing for the x-axis. There should be two separate instances, one for each axis.