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
使用时在窗口onresize事件中,更新chart的宽高: window.onresize = function() { chart.changeSize(window.innerWidth, window.innerHeight) } 问题来了,changeSize前一切正常: changeSIze之后,tooltip高度未随之变化: 看了下API文档,未找到相关可以设置的东西
window.onresize = function() { chart.changeSize(window.innerWidth, window.innerHeight) }
The text was updated successfully, but these errors were encountered:
现在找到一个变通方法是:changeSize前先关闭toolTip,changeSize后再重新开启toolTip; 暂时凑合着能用,但最好还是希望官方修复下
Sorry, something went wrong.
fix: when chart size change, the height of tooltip crosshairs should …
e7c7e91
…update. Closed #543
simaQ
Successfully merging a pull request may close this issue.
使用时在窗口onresize事件中,更新chart的宽高:
window.onresize = function() { chart.changeSize(window.innerWidth, window.innerHeight) }
问题来了,changeSize前一切正常:
changeSIze之后,tooltip高度未随之变化:
看了下API文档,未找到相关可以设置的东西
The text was updated successfully, but these errors were encountered: