1.0.0 • Published 6 years ago

react-echarts-packet v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

React-Echarts-Packet

React + Echarts = React-Echarts-Packet

React component for Echarts 4.x

安装方法 Installation

npm install react-echarts-packet echarts --save

预览 Demo

本机运行

git clone git@github.com:zyj1022/react-echarts-packet.git

npm install

npm run dev

使用方法 Usage

option 可参照 echarts 官方实例

import Echarts from 'react-echarts-packet'

const options={
  theme: null, // 可选
  option: {
    // ……data
  },
  events: {
    click: (params) => {
      console.log(params)
    }
  }
}

<Echarts {...options}/>

或者

import Echarts from 'react-echarts-packet'

const option= {
  // …………data
}
const onEvents = {
    click: (params) => {
      console.log(params)
    }
}

<Echarts option={option} theme={'roma'} events={onEvents} />

Properties

  • theme: oneOfType(object, string),
  • option: object.isRequired,
  • events: object,
  • opts: shape({
  • notMerge: bool,
  • lazyUpdate: bool,
  • style: object,
  • className: string

图表类型 Chart type

图表类型,可参照 echarts 官方实例图表种类,与官方保持一致。

  • Line
  • Bar
  • Pie
  • Scatter
  • Map
  • Candlestick
  • Radar
  • Boxplot
  • Heatmap
  • Graph
  • Tree
  • Treemap
  • ……more

License

MIT License