New to Kendo UI for Angular? Start a free 30-day trial
ChartWizardModule
A module that includes the Chart Wizard component and directives.
Use this module to add ChartWizard features to your NgModule-based Angular application.
typescript
import { ChartWizardModule } from '@progress/kendo-angular-chart-wizard';
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, ChartWizardModule],
bootstrap: [AppComponent]
})
export class AppModule {}