# echarts-for-react
#### 简介
使用echarts-for-react插件可以在React中调用echarts接口直接渲染出Echarts图表,只要传入相关的参数和数据即可。代码简介,功能使用。
#### 安装
~~~
npm install --save echarts-for-react
# `echarts` is the peerDependence of `echarts-for-react`, you can install echarts with your own version.
npm install --save echarts
~~~
#### DEMO演示
~~~
git clone https://github.com/hustcc/echarts-for-react.git
npm install
npm start
~~~
![](https://upload-images.jianshu.io/upload_images/2644925-c9fd32d9ad70a700.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1000/format/webp)
demo效果
demo中可以看到各种不同类型的图表,在项目开发过程中有需要可以查阅,copy相关的代码,或者查看图表的数据格式,了解图表的相关功能,以便更好地引用及重构图表。
#### 使用
~~~
import * as React from "react";
import ReactEcharts from "echarts-for-react";
<ReactEcharts
option={this.getOption()}
notMerge={true}
lazyUpdate={true}
theme={"theme_name"}
onChartReady={this.onChartReadyCallback}
onEvents={EventsDict}
opts={} />
~~~
也可手动导入echarts.js模块以减小包大小
~~~
import React from 'react';
// import the core library.
import ReactEchartsCore from 'echarts-for-react/lib/core';
// then import echarts modules those you have used manually.
import echarts from 'echarts/lib/echarts';
// import 'echarts/lib/chart/line';
import 'echarts/lib/chart/bar';
// import 'echarts/lib/chart/pie';
// import 'echarts/lib/chart/scatter';
// import 'echarts/lib/chart/radar';
// import 'echarts/lib/chart/map';
// import 'echarts/lib/chart/treemap';
// import 'echarts/lib/chart/graph';
// import 'echarts/lib/chart/gauge';
// import 'echarts/lib/chart/funnel';
// import 'echarts/lib/chart/parallel';
// import 'echarts/lib/chart/sankey';
// import 'echarts/lib/chart/boxplot';
// import 'echarts/lib/chart/candlestick';
// import 'echarts/lib/chart/effectScatter';
// import 'echarts/lib/chart/lines';
// import 'echarts/lib/chart/heatmap';
// import 'echarts/lib/component/graphic';
// import 'echarts/lib/component/grid';
// import 'echarts/lib/component/legend';
import 'echarts/lib/component/tooltip';
// import 'echarts/lib/component/polar';
// import 'echarts/lib/component/geo';
// import 'echarts/lib/component/parallel';
// import 'echarts/lib/component/singleAxis';
// import 'echarts/lib/component/brush';
import 'echarts/lib/component/title';
// import 'echarts/lib/component/dataZoom';
// import 'echarts/lib/component/visualMap';
// import 'echarts/lib/component/markPoint';
// import 'echarts/lib/component/markLine';
// import 'echarts/lib/component/markArea';
// import 'echarts/lib/component/timeline';
// import 'echarts/lib/component/toolbox';
// import 'zrender/lib/vml/vml';
<ReactEchartsCore
echarts={echarts}
option={this.getOption()}
notMerge={true}
lazyUpdate={true}
theme={"theme_name"}
onChartReady={this.onChartReadyCallback}
onEvents={EventsDict}
opts={} />
~~~
#### 组件的参数简介
* **`option`**(required, object)
这个是核心,是必须的,包含echarts图表的配置项和数据,如标题title、图例legend、提示框tooltip、x轴xAxis、y轴yAxis、series等,详见[http://echarts.baidu.com/option.html#title](http://echarts.baidu.com/option.html#title).
* **`notMerge`**(optional, object)
可选,是否不跟之前设置的 option 进行合并,默认为 false,即合并。
* **`lazyUpdate`**(optional, object)
可选,在设置完 option 后是否不立即更新图表,默认为 false,即立即更新。
* **`style`**(optional, object)
包含echarts图表的div的样式,默认是{height: '300px'}.
* **`className`**(optional, string)
包含echarts图表的div的类名. 可以根据需要自行配置类名,不同类配置不同的css。
* **`theme`**(optional, string)
应用的主题。可以是一个主题的配置对象,也可以是使用已经通过[echarts.registerTheme](https://echarts.baidu.com/api.html#echarts.registerTheme)注册的主题名称。
(主题对象的格式样例:[https://github.com/ecomfe/echarts/blob/master/theme/dark.js](https://github.com/ecomfe/echarts/blob/master/theme/dark.js)).
通过registerTheme注册主题:
~~~
// import echarts
import echarts from 'echarts';
...
// register theme object
echarts.registerTheme('my_theme', {
backgroundColor: '#f4cccc'
});
...
// render the echarts use option `theme`
<ReactEcharts
option={this.getOption()}
style={{height: '300px', width: '100%'}}
className='echarts-for-echarts'
theme='my_theme' />
~~~
* **`onChartReady`**(optional, function)
当图表准备好时,将图表作为参数传给回调函数
* **`loadingOption`**(optional, object)
* **`showLoading`**(optional, bool, default: false)
是否加载动画效果
* **`onEvents`**(optional, array(string=>function) )
为图表绑定事件
~~~
let onEvents = {
'click': this.onChartClick,
'legendselectchanged': this.onChartLegendselectchanged
}
...
<ReactEcharts
option={this.getOption()}
style={{height: '300px', width: '100%'}}
onEvents={onEvents} />
~~~
参见:[http://echarts.baidu.com/api.html#events](http://echarts.baidu.com/api.html#events)
* **`opts`**(optional, object)
附加参数。有下面几个可选项:
> `devicePixelRatio`
> 设备像素比,默认取浏览器的值`window.devicePixelRatio`。
> `renderer`
> 渲染器,支持`'canvas'`或者`'svg'`。参见[使用 Canvas 或者 SVG 渲染](http://echarts.baidu.com/tutorial.html#%E4%BD%BF%E7%94%A8%20Canvas%20%E6%88%96%E8%80%85%20SVG%20%E6%B8%B2%E6%9F%93)。
> `width`
> 可显式指定实例宽度,单位为像素。如果传入值为`null`/`undefined`/`'auto'`,则表示自动取`dom`(实例容器)的宽度。
> `height`
> 可显式指定实例高度,单位为像素。如果传入值为`null`/`undefined`/`'auto'`,则表示自动取`dom`(实例容器)的高度。
#### 组件API和ECharts API
对于组件来说,只有一个API——getEchartsInstance(),用来获取Echarts的实例对象。获取到对象后就可以使用任意的Echarts API。
~~~
// render the echarts component below with rel
<ReactEcharts ref={(e) => { this.echarts_react = e; }}
option={this.getOption()} />
// then get the `ReactEcharts` use this.echarts_react
let echarts_instance = this.echarts_react.getEchartsInstance();
// then you can use any API of echarts.
let base64 = echarts_instance.getDataURL();
~~~
Echarts的API请参见:[Echarts API](https://echarts.baidu.com/api.html#echartsInstance)
使用这些API可以实现以下功能:
* 绑定/解绑事件
* 设置带有动态数据的动态图表
* 获取echarts dom/dataurl/base64,将图表保存到png。
* 发布图表
- 第一章 起步
- 第1节 创建react项目
- 第2节 hello world
- 第3节 数据绑定+事件处理
- 3.1 for循环事件处理中的传参写法、条件渲染
- 第4章 点击切换文字
- 第5章 使用html写react
- 第二章 运用
- 第1节 循环
- 第2节 实现一个简单的TodoList
- 第2.1节 删除
- 第3节 父子组件传参
- 1. 父组件向子组件传参
- 2. 子组件向父组件传参
- 第4节 react-router实现一个简单路由
- 第5节 生命周期
- 第6节 取数据
- 第 7节 获取dom节点
- 第8节 双向数据绑定
- 第三章 redux
- 第1节 介绍
- 第2节 安装redux
- 第3节 使用
- 3.1 action
- 3.2 使用redux实现 todolist
- 第4节封装redux中的action
- 第5节 redux-thunk中间件
- 5.1介绍
- 5.2使用
- 第四章 ant-design前端ui
- 第一节 安装
- 第2节 使用
- 2.1 ant-design实现todoList增删功能
- 第3节 使用整理
- 第五章 vue和react的比较
- 第六章 dva.js轻量级应用框架
- 第1节 介绍
- 第2节 安装dva
- 第3节 页面跳转
- 1. 事件路由跳转
- 2. 通过路由跳转
- 第4节 组件之间通信
- 1. 父组件向子组件传参
- 2. 子组件向父组件传参
- 第5节 事件处理
- 第6节 发送请求
- 1. 通过路由判断页面渲染数据
- 2. 通过事件发送请求
- 第7节 运用
- 1. TodoList
- 1.添加数据
- 1.2输入框敲回车触发事件
- 2.删除数据
- 3. 总结
- 第8节 配合antd使用
- 1. 引入antd
- 2.dva 使用antd注意事项
- 3. 知识点整理
- 第七章 dva后台项目实战
- 第1节 登录加密
- 1.具体实现
- 第2节 知识点
- 第3节 树结构
- 第八章 react新特性 hooks
- 第1节 hooks介绍
- 第2节 useState的使用
- 第3节 useEffect的使用
- 第4节 dva+antd+hooks企业后台项目开发流程
- 第 5节 hooks 使用
- 运用
- 第6节 hook整理
- 第7节 react memo
- 第九章 react中使用Echarts
- 知识点
- react中使用mobx
- 知识点
- react中使用rem
- 递归实现目录数
- react使用图表
- react 同步更新策略
- antd tree默认展开无效
- ts中lint修复篇
- React-query方案
- 高阶组件