e-ngx-echarts
v5.0.1
Published
基于 Angular 的 echarts 图表组件
Downloads
13
Maintainers
Readme
e-ngx-echarts
基于 Angular 的 echarts 图表组件
Usage
Install
npm install --save e-ngx-echarts
Add the ENgxChartModule
import { ENgxEChartsModule } from 'e-ngx-echarts'; @NgModule({ imports: [ ENgxEChartsModule ] })
template
<div style="width: 600px; height:400px;" echarts [options]="options" (ready)="onEChartsReady($event)"></div>
component
options = { title: { text: '堆叠区域图' }, tooltip: { trigger: 'axis', axisPointer: { type: 'cross', label: { backgroundColor: '#6a7985' } } }, legend: { data: ['邮件营销', '联盟广告', '视频广告', '直接访问', '搜索引擎'] }, toolbox: { feature: { saveAsImage: {} } }, grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true }, xAxis: [ { type: 'category', boundaryGap: false, data: ['周一', '周二', '周三', '周四', '周五', '周六', '周日'] } ], yAxis: [ { type: 'value' } ], series: [ { name: '邮件营销', type: 'line', stack: '总量', areaStyle: {normal: {}}, data: [120, 132, 101, 134, 90, 230, 210] }, { name: '联盟广告', type: 'line', stack: '总量', areaStyle: {normal: {}}, data: [220, 182, 191, 234, 290, 330, 310] }, { name: '视频广告', type: 'line', stack: '总量', areaStyle: {normal: {}}, data: [150, 232, 201, 154, 190, 330, 410] }, { name: '直接访问', type: 'line', stack: '总量', areaStyle: {normal: {}}, data: [320, 332, 301, 334, 390, 330, 320] }, { name: '搜索引擎', type: 'line', stack: '总量', label: { normal: { show: true, position: 'top' } }, areaStyle: {normal: {}}, data: [820, 932, 901, 934, 1290, 1330, 1320] } ] }; onEChartsReady(evt: any) { console.log(evt); }
API
exportAs
eNgxECharts
- 导出的指令变量,可在模板获取指令类并调用(#eNgxECharts="eNgxECharts"
)。
Inputs
options
(Object
) - options 与echarts的配置属性一致theme
(Object
) - 调用 echarts.init 方法传入的主题的配置对象,也可以是使用已经通过 echarts.registerTheme 注册的主题名称。可通过echarts主题构建工具导出自定义主题的配置对象(JSON版)initOpts
(Object
) - 调用 echarts.init 方法传入的附加参数
Outputs
ready
- 初始化完成的事件,$event为当前 ENgxEChartsDirective 实例chartClick
: 点击事件。参数同click
事件chartDblClick
: 双击事件。参数同dblclick
事件chartMouseDown
: 鼠标按下事件。mousedown
事件chartMouseUp
: 鼠标松开事件。参数同mouseup
事件chartMouseOver
: 鼠标移上事件。参数同mouseover
事件chartMouseOut
: 鼠标移开事件。参数同mouseout
事件chartDataZoom
: 数据区域缩放后的事件。参数同dataZoom
事件
更多事件可查看:http://echarts.baidu.com/api.html#events
Properties
echartsIntance
- echarts 实例
Service
ENgxEchartsService
- 全局 echarts 对象包装器,可以通过它获取全局 echarts 对象及相应方法
示例:
import { ENgxEchartsService } from 'e-ngx-echarts';
//...
constructor(public es: ENgxEchartsService) {}
ngOnInit() {
// 获取全局 echarts 对象
const echarts = this.es.echarts;
echarts.registerTheme('wonderland', obj);
// 或者直接调用服务包装好的方法:
// this.es.registerTheme('wonderland', obj);
}