码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-10-23 00:56:55      阅读:296      评论:0      收藏:0      [点我收藏+]

标签:angular4   tps   cli   its   com   bug   方法   contex   click   

一个比较正确的使用方法: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)

 


版权声明:本文为博主原创文章,未经博主允许不得转载。

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

标签:angular4   tps   cli   its   com   bug   方法   contex   click   

原文地址:http://www.cnblogs.com/branton-design/p/7712546.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!