We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"native-echarts": "^0.5.0",
每次选择不同的item后,可以正常点击折线图显示tooltip,如果option数据源改变后,选择更新option后,每次都应该显示不同的tooltip(展示最新的tooltip).
item
折线图
tooltip
option
第一次显示正常,选择数据项后,每次点击都显示第一次所点击出现的tooltip,也就是说,tooltip更新后,以后一直没有有改变?
xData
yData
echarts
index.js
componentWillReceiveProps(nextProps) { if(nextProps.option !== this.props.option) { this.refs.chart.reload(); // 第一次调用这里没有问题 } }
引用this.chart.setNewOption(新的数据源)
// 通过外部引用调用这里 setNewOption(option) { this.refs.chart.postMessage(JSON.stringify(option)); }
请问大佬,需要怎么处理才能解决这个问题?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
版本号:
"native-echarts": "^0.5.0",
期望结果
每次选择不同的
item
后,可以正常点击折线图
显示tooltip
,如果option
数据源改变后,选择更新option
后,每次都应该显示不同的tooltip
(展示最新的tooltip).实际结果
第一次显示正常,选择数据项后,每次点击都显示第一次所点击出现的tooltip,也就是说,
tooltip
更新后,以后一直没有有改变?重现步骤描述
xData
和yData
, 在echarts
的index.js
文件调用了:tooltip
--- 到这里没问题option
, 然后在外面通过引用this.chart.setNewOption(新的数据源)
, 在echarts
的index.js
文件调用了:tooltip
没有消失,再点击还一直是原来的tooltip
展示的数据请问大佬,需要怎么处理才能解决这个问题?
The text was updated successfully, but these errors were encountered: