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