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