Is there an easy way to change the value displayed in the label above a JSlider while using certain "look and feel"s?
To be clear, I'm talking about this value:
Specifically, I would like to show the value divided by 1000 instead of the value itself.
I know I can set labels for the tick if I display them, but then the user would have to guess the actual value.
I also know that I could remove the label using this answer, and then implement my own label that updates with the slider, but that is precisely what I am trying to avoid.
This really seems like an obvious issue considering JSlider does not support doubles.