New to Kendo UI for Angular? Start a free 30-day trial
KENDO_CHARTWIZARD
Represents the Kendo UI Chart Wizard utility array that contains all components and directives from the @progress/kendo-angular-chart-wizard
package.
Use this array to import all Chart Wizard-related components and directives into your standalone Angular component.
typescript
import { Component } from '@angular/core';
import { KENDO_CHARTWIZARD } from '@progress/kendo-angular-chart-wizard';
@Component({
selector: 'app-my-component',
standalone: true,
imports: [KENDO_CHARTWIZARD],
template: `
<kendo-chart-wizard>
</kendo-chart-wizard>
`
})
export class MyComponent { }