tb / ng2-nouislider

Angular2 noUiSlider directive
http://tb.github.io/ng2-nouislider/
MIT License
185 stars 114 forks source link

updated README.md #231

Closed whatwouldmarvindo closed 1 year ago

whatwouldmarvindo commented 3 years ago

added a section to the readme on how to dynamically update the sliderOptions. For this I simply added a short snippet of code like this

Dynamically update slider options

export class myComponent {
    @ViewChild('mySlider') slider: NouisliderComponent

    updateSliderOptions() {
        this.slider.slider.updateOptions(configObject)
    }
}
<nouislider #mySlider></nouislider>

This is my first PR, please be gentle :)