New to Kendo UI for Angular? Start a free 30-day trial
RangeSliderModule
Defines the NgModule
for the RangeSlider component.
Use this module to add the RangeSlider component to your NgModule-based Angular application.
typescript
import { RangeSliderModule } from '@progress/kendo-angular-inputs';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, BrowserAnimationsModule, RangeSliderModule],
bootstrap: [AppComponent]
})
export class AppModule {}