美文网首页
reactCharts动态切换图表,数据不更新的问题

reactCharts动态切换图表,数据不更新的问题

作者: 小虾米前端 | 来源:发表于2021-07-13 10:14 被阅读0次
场景和问题:点击事件触发不了,或需要触发2次才能切换成功图表

1.拿到chart的ref
const [chartInfo,setChartInfo] = useState[null]
<ReactEcharts ref={(e) => setChartInfo(e)} option={option}></ReactEcharts>

2. 在你的点击事件里做操作
const onChangeChart = (e) => {
if (e.target.value === '1') {
const optOne = {‘你的echart配置’}
chartInfo.getEchartsInstance().setOption(optOne);
} else {
const optTwo = {‘你的echart配置’}
chartInfo.getEchartsInstance().setOption(optTwo);
}
}

相关文章

网友评论

      本文标题:reactCharts动态切换图表,数据不更新的问题

      本文链接:https://www.haomeiwen.com/subject/ntbjpltx.html