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