syedowaisali / crystal-range-seekbar

538 stars 170 forks source link

max_start_value is not working in CrystalRangeSeekbar #93

Closed ankur-dev closed 6 years ago

ankur-dev commented 6 years ago

i have set min value, max value, Now i want to set max_start_value which is greater than min value and less than max value. but its not working. Ex my min value is 1000 and max value is 10000, now i want to set max start value 4000.

Bikeskin commented 6 years ago

hi ankur-dev, could you try it like this? rangebarPrice.setMinValue(1000) .setMaxValue(10000) .setMinStartValue(2000) .setMaxStartValue(4000) .apply();

ankur-dev commented 6 years ago

Thank you . Its working.

squarest commented 6 years ago

Please, tell about it in documentation I've spend 2 days before finding this topic

rastogitech commented 6 years ago

Why you designed it in a way that it needs apply(). It's really unexpected, I spent my time looking into it.

ElectApp commented 5 years ago

Me too! I almost change library because I spent more time for trying. I think should add example on https://github.com/syedowaisali/crystal-range-seekbar

Thank you