New to Kendo UI for Angular? Start a free 30-day trial
LinearGaugeModule
Updated on Jun 20, 2025
Represents the NgModule definition that includes the LinearGauge component and its directives.
Import the LinearGaugeModule into your application
root module or any other sub-module
that will use the LinearGauge component.
ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { LinearGaugeModule } from '@progress/kendo-angular-gauges';
import { AppComponent } from './app.component';
@NgModule({
bootstrap: [AppComponent],
declarations: [AppComponent],
imports: [BrowserModule, LinearGaugeModule]
})
export class AppModule {
}