ChartModule
A module that includes the Chart component and directives.
Imports the ChartModule into your application [root module]({{ site.data.url.angular['ngmodules'] }}#angular-modularity) or any other sub-module that will use the Chart component.
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 {
}