ArcGaugeModule
Class
Represents the NgModule definition that includes the ArcGauge component and its directives.
Import the ArcGaugeModule into your application
root module or any other sub-module
that will use the ArcGauge component.
Definition
Package:@progress/kendo-angular-gauges
Syntax:
TS
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { ArcGaugeModule } from '@progress/kendo-angular-gauges';
import { AppComponent } from './app.component';
@NgModule({
bootstrap: [AppComponent],
declarations: [AppComponent],
imports: [BrowserModule, ArcGaugeModule]
})
export class AppModule { }