Skip to main content

angular material - Tick interval auto in Slider

app.component.ts

import { Component } from '@angular/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styles: [`
    mat-slider{
      width: 400px;
    }
  `]
})


export class AppComponent { 
  value:number = 0;
}
app.component.html

<h2 style="padding-top:25px; padding-bottom:25px;">
    Angular Material - Tick interval auto in Slider
</h2>


<h3>Selected Value : {{value}}</h3>

<h5>No Step</h5>
<mat-slider 
    [(ngModel)]="value" 
    tickInterval="auto">
</mat-slider>

<h5>Step 10</h5>
<mat-slider 
    [(ngModel)]="value" 
    tickInterval="auto"
    step="10">
</mat-slider>

<h5>Step 25</h5>
<mat-slider 
    [(ngModel)]="value" 
    tickInterval="auto"
    step="25">
</mat-slider>
app.module.ts [import]

import { MatSliderModule } from '@angular/material/slider';
import { FormsModule } from '@angular/forms';
More Angular tutorials