1.0.2 • Published 6 years ago

@amcdnl/ngx-echarts v1.0.2

Weekly downloads
9
License
MIT
Repository
github
Last release
6 years ago

ngx-echarts

Echarts bindings for Angular.

Usage

To get started, lets install the package thru npm:

npm i @amcdnl/ngx-echarts echarts --S

then include the effect in your module:

import { EChartsModule } from '@amcdnl/ngx-echarts';

@NgModule({
    imports: [EChartsModule]
})
export class MyModule {}

then use the component like:

<ngx-echarts
  [series]="series$ | async"
  (chartClick)="onChartClick($event)"
  (chartDblClick)="onChartDblClick($event)">
</ngx-echarts>

For more information, visit official ECharts documentation.