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
const chart = new Chart({ theme: 'classic', container: div, canvas }); chart.data([ { genre: 'Sports', sold: 275 }, { genre: 'Strategy', sold: 115 }, { genre: 'Action', sold: 120 }, { genre: 'Shooter', sold: 350 }, { genre: 'Other', sold: 150 }, ]); const interval = chart .interval() .encode('x', 'genre') .encode('y', 'sold') .encode('color', 'genre'); const finished = chart.render(); button.onclick = () => { interval.changeData([ { genre: 'Action', sold: 120 }, { genre: 'Shooter', sold: 350 }, ]); };
The text was updated successfully, but these errors were encountered:
同样的问题,在v5.0.6有,暂时只能退回到5.0.5了~。
Sorry, something went wrong.
问题已修复,安装最新依赖试试。
同样的问题,在v5.0.6有,暂时只能退回到5.0.5了~。 问题已修复,安装最新依赖试试。
目前还没有修复哈,等这个 PR 合并:#5002
Aarebecca
pearmini
Successfully merging a pull request may close this issue.
代码
现象
The text was updated successfully, but these errors were encountered: