I am using Slider with a draggable range ( https://jsfiddle.net/ValentinH/954eve2L/ ) in angular js for timing. I want to set the time in this slider. So, my watch is from 00.00 to 24.00. But I want to set the time with an interval of 10 minutes, Like00.10, 00.20, 00.30, 00.40, 00.50, 01.00, 01.10,01.10
<article>
<h2>Slider with draggable range</h2>
<rzslider rz-slider-model="slider_draggable_range.minValue" rz-slider-high="slider_draggable_range.maxValue" rz-slider-options="slider_draggable_range.options"></rzslider>
</article>
$scope.slider_draggable_range = {
minValue: 1,
maxValue: 8,
options: {
ceil: 10,
floor: 0,
draggableRange: true
}
};
$scope.slider_draggable_range = {
minValue: $scope.fromTime,
maxValue: $scope.toTime,
options: {
ceil: 24,
floor: 0,
draggableRange: true,
showTicks: true,
hideLimitLabels: true,
hourBase: function(value) {
return (((value > 1 && value < 12) || value > 25) ? '0' : '') + (value + 22) % 24 + '00 hrs'
},
steps: pules()
}
};
I can not post my full code. Because it is impossible. I choose from time to time, like 10.00, 11.00, 12.00 ... But now I want time from 1.10, 1.20.1.30.

When I used statically minValue: 4.40, then it will indicate 4, and when I set it 4.60, then it will point to 5, so convert it to the round value of the figure. Not in points.
$scope.slider_draggable_range = {
minValue: 4.40,
maxValue: 7,
options: {
ceil: 24,
floor: 0,
draggableRange: true
}
};
ceil: 24 limit,
: , minvalue:
, maxvalue:
. .