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