您的位置:首页 > Web前端 > AngularJS

Angular2或Angular4使用echarts , ngx-echarts的方法

2017-08-23 15:16 543 查看
一个比较正确的使用方法:https://github.com/xieziyu/ngx-echarts

1、

npm install echarts --save
npm install ngx-echarts --save

如果网速差,可以使用淘宝镜像


2、项目中.angular-cli.json 中添加echarts

{
"scripts": [
// ...

// add this:
"../node_modules/echarts/dist/echarts.min.js"  // or echarts.js for debug purpose
],
}


3、在module 中调用

import { AngularEchartsModule } from 'ngx-echarts';

@NgModule({
imports: [
...,
AngularEchartsModule
],
...
})
export class AppModule { }


4、html中

<div echarts [options]="chartOption" class="demo-chart"></div>


5、chartOption就是option

6、事件方法

chartClick
: It emits the same 
params
 of 
'click'
 event
chartDblClick
: It emits the same 
params
 of 
'dblclick'
 event
chartMouseDown
: It emits the same 
params
 of 
'mousedown'
 event
chartMouseUp
: It emits the same 
params
 of 
'mouseup'
 event
chartMouseOver
: It emits the same 
params
 of 
'mouseover'
 event
chartMouseOut
: It emits the same 
params
 of 
'mouseout'
 event
chartGlobalOut
: It emits the same 
params
 of 
'globalout'
 event
chartContextMenu
: It emits the same 
params
 of 
'contextmenu'
 event
(since v1.2.1)
chartDataZoom
: It emits the same 
params
 of 
'dataZoom'
 event
(thanks to averhaegen)


                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: