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