New to Kendo UI for Angular? Start a free 30-day trial
ChartModule
A module that includes the Chart component and directives.
Imports the ChartModule into your application root module or any other sub-module that will use the Chart component.
ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { ChartModule } from '@progress/kendo-angular-charts';
import { AppComponent } from './app.component';
@NgModule({
bootstrap: [AppComponent],
declarations: [AppComponent],
imports: [BrowserModule, ChartModule]
})
export class AppModule {
}