react-echarts
react-echarts copied to clipboard
React echarts
Sorry for your time. I have to make a little more adjustment here. Please also help us to change the word "ECharts" in "About" description to "Apache ECharts (incubating)". Thank...
There was a minor error in the spelling, corrected so users can run the examples provided. Thanks.
How to customize the areaStyle? like this: `areaStyle:{ normal: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: 'rgba(40, 182, 252, 0.85)' }, { offset: 1, color: 'rgba(28,...
```javascript import React from "react"; import { render } from "react-dom"; import Chart from 'rc-echarts'; const option = { title: { text: '世界人口总量', subtext: '数据来自网络' }, tooltip: { trigger: 'axis',...
比如原生js版本的echart设置渐变色可以这样配置: color: new echarts.graphic.RadialGradient(0.5, 0.5, 0.5, [...],false) 但是在react组件里面如何使用这个 graphic的渐变
会报一个警告 
babel-runtime 放到dependencies 版本会跟别人的冲突,完全可以放到devDependencies啊?