I am working on an app based on DASH, Plotly and Python. The app should take multiple inputs (floating point) and do some calculations. I have some requirements:
-
I don’t like the arrow up and down in the Number boxes. Since my numbers are floating point I have no use for stepping up and down in value.
-
The number inputs must accept both commas and dots as decimal separator.
For the above two reasons I have currently decided to use TEXT input box.
Furthermore, our Python dictionary of variables is holding all values in text format.
We would like to be able to calculate with full floating-point precision, but at the same time have dcc.Input only display e.g. 2-4 digits, i.e. we wish that the text display in the input box could be formatted.
Please let me know if you see a way forward in making the app work and do what I wish. Thank you.
Best regards,
Claus