New to Kendo UI for AngularStart a free 30-day trial

CircularGaugeModule

Updated on Jun 20, 2025

Represents the NgModule definition that includes the CircularGauge component and its directives. Import the CircularGaugeModule into your application root module or any other sub-module that uses the CircularGauge component.

ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { CircularGaugeModule } from '@progress/kendo-angular-gauges';
import { AppComponent } from './app.component';

@NgModule({
    bootstrap:    [AppComponent],
    declarations: [AppComponent],
    imports:      [BrowserModule, CircularGaugeModule]
})
export class AppModule { }
Not finding the help you need?
Contact Support