I am using ion.rangeslider
in my angular application and it displaying fine.
But how can i get the value of the silder
and i need to update min and max values of the slider dynamically.
I have seen some of the questions in SO like this ion-rangeslider not getting displayed and ion RangeSlider: customize grid in case of custom values. some of other solutions but they didn't help me.
my html is as follows
<div class="form-group">
<input ionSlider id="sliderData" type="text" data-min="2000" data-from="2000" data-max="2800" data-type="single"
data-step="5" data-prefix="$ " data-prettify="false" data-hasgrid="true" (onChange)="ionSliderForValues($event)">
</div>
Component
ionSliderForValues(event:any){
console.log(event);
}
is there any other methods to get the value of the slider or any chance to get in angular way. suggest me you wil be well rewared, thank you.