Denis Ineshin
Denis Ineshin
I see that you want 25 and 50 and 75. Problem is that your starting point is 4, not 0. And that means that automatic calculation of grid will not...
It is easy. Open inspector. Find current grid. Copy paste it. Disable grid, then add copy pasted code on the page (change values to desired ones)
Example: https://jsfiddle.net/IonDen/o3xcwyh0/
Come on guys. Positioning elements is already off topic. Please ask on Stack Overflow.
Add `grid: true`
Gray labels are min and max. They supposed to look like that. If you want some custom labels - check Showcase page on a website
Hi, if slider is using custom values - it is not possible. It have only as many steps - as many values you have. In case of months - 12...
It looks like a bug. I will try to look in to this.
Hi, you should treat slider differently then it uses values array. In this case `from` and `to` are indexes of this array, not actual values. Check this demo: https://jsfiddle.net/cbq6501v/
Hi, you can't disable it through API. But you could do it via CSS. Like this: ```css .irs-from, .irs-to, .irs-single { pointer-events: none; } ```