@amcdnl/ngx-echarts
v1.0.2
Published
ECharts for Angular
Downloads
11
Maintainers
Readme
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.