I'm having some trouble figuring out how to make snap spots to different values inside the slider in Angular. Slider:
<mat-slider
min="0" max="90" step="1" tickinterval="auto" thumbLabel (input)="positionChanged(component, 'north.dx', $event.value)" (input)="positionChanged(component, 'north.dy', $event.value)"
></mat-slider>
I need to have three snap spots: [33, 45, 90]
.
Link to documentation: Angular mat-slider
Is there a way to do this inside the html? I hope someone is able to help me. Thanks in advance!
HTML:
In component.ts:
Please find the working stackblitz answer here. Now along with it you need to have the
html2canvas
library installed in the project Please findhtml2canvas
here. Its fairly straight forward to take snapshot in it. I'll share the stackblitz sample of taking snapshot with you here. What you need to do is programmtically take the snapshot if it is the having the value of33,45,90
which I have done in the releventif
andelse if
blocks in the answer.