I am using Ion.RangeSlider for a timeline. I have the setting hide_from_to: true
as I don't want those labels to be seen.
However, there is one exception, where I would like that they are actually visible: when the user moves the handles.
That is, usually the slider should look like this:
But when moving the handle (and only then) it should look like this:
I tried with onChange
, but I did not manage
$range.ionRangeSlider({
type: "double",
min: 4,
...,
onChange: function (){
hide_from_to = false,
},
...
Any ideas on how to do that?