React Echarts 点击事件(echarts-for-react)

    onclick = {
        'click': this.onChartClick.bind(this)
    }
    onChartClick(param) {
        console.log(param)
    }
    render() {

        return (
            <div>
               <ReactEcharts
                 option={option}
                 style={{ height: '75vh' }}
                 onEvents={this.onclick} 
              />
           </div>
        );
    }

 

posted @ 2020-11-03 15:32  a茶色  阅读(3098)  评论(0编辑  收藏  举报