Is-it possible to use comma as decimal separator ? #160
-
|
Hi ! I would like to use comma instead of dot as decimal separator, is it possible ? |
Beta Was this translation helpful? Give feedback.
Answered by
johannes-wolf
Nov 18, 2025
Replies: 1 comment 1 reply
-
|
Yes, you can bring your own formatting function for tick labels ( ...
plot.plot(x-format: value => { $#str(calc.round(value, digits: 2)).replace(".", ",")$ }, { ... }) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
amelliug
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, you can bring your own formatting function for tick labels (
x-format,y-format, ...):... plot.plot(x-format: value => { $#str(calc.round(value, digits: 2)).replace(".", ",")$ }, { ... })