is there a way to move slider from 100 to 1 instead of moving it from 1 to 100 currently im seeing we only have a min property and max property, so the slider values move in ascending order https://material.angular.io/components/slider/overview
<mat-slider class="example-margin" [min]="1" [max]="100" [step]="5" [discrete]="true"[showTickMarks]="true"> <input matSliderThumb [(ngModel)]="value" #slider> </mat-slider>
appreciate the response, thank you.
Tried using the invert property but that's flipping the fill line