Tick labels format and auto range #657
-
Hi, I have two questions:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi, welcome to chart-fx 👋
hope this as least helps to point you in the right direction. |
Beta Was this translation helpful? Give feedback.
Hi, welcome to chart-fx 👋
without actually trying this out, i would point you towards https://github.com/ennerf/chart-fx/blob/56a6dcb5e8e420845bde48f6f21a3a4498fb1240/chartfx-chart/src/main/java/io/fair_acc/chartfx/axes/spi/format/DefaultFormatter.java#L39 setting this to
Plain
should disable the exponential formWe thought about this for a long time and while for some cases this would be trivial to add it gets hard as soon as you have huge dynamic datasets there is no efficient algorithm to recompute the range and also the UX of which auto ranging axis depends on which other auto ranging axis is not easy to get right.
I would suggest to not use chartfx's auto ranging but implement yo…