Why is it that the 10 °F label gets cut off onto the next line, but the 100 °C label stays on one line? The one I’m creating also gets cut off. Below is the code in my app.layout for my use case, which results in something like the blue circle:
That’s a very strange limitation of dcc.RangeSlider(). After some testing considering that Bin 1.0 has a space in between, this is what I found:
Bin 1.0 Two lines
Bin-1.0 Two lines
Bin_1.0 One line
Bin:1.0 One line
Bin>1.0 One line
Bin=1.0 One line
It also seems like this issue only arises when the label is the right-most label
Most other characters seemed to work here. @David22 I’ve marked your answer as the solution, however it’s still unclear if the problem is solved. Is this a purposeful of dcc.RangeSlider()? Or a possible bug? I wonder…