reactecharts-onevents

ReactEchart点击每个节点进入对应详情页面

方法例子

1
2
3
4
5
6
7
8
9
10
11
12
13
14

onclick = {
click: this.clickEchartsPie.bind(this)
};
clickEchartsPie(e) {
//console.log(e)
}

<ReactEcharts
option={option}
style={{ height: '300px', width: '100%' }}
className={'react_for_echarts'}
onEvents={this.onclick}
/>