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
中级任务
使用facetCircle绘制时,月份的数据和具体图表对应不上:
import { Chart } from '@antv/g2'; const M = [ 'Jan.', 'Feb.', 'Mar.', 'Apr.', 'May', 'Jun.', 'Jul.', 'Aug.', 'Sept.', 'Oct.', 'Nov.', 'Dec.', ]; const N = ['A', 'B', 'C', 'D']; const data = M.flatMap((month) => N.map((name) => ({ month, name, value: month === 'Jan.' ? 1 : 0 //这里指定数据 })), ); const chart = new Chart({ container: 'container', width: 480, height: 480, }); const facetCircle = chart.facetCircle().data(data).encode('position', 'month'); facetCircle .interval() .encode('x', 'name') .encode('y', 'value') .encode('color', 'name'); chart.render();
The text was updated successfully, but these errors were encountered:
这个感觉是个 bug,和这个函数有关系,感兴趣来修复一下吗?
Sorry, something went wrong.
好,有空了看看我能不能修复
【BENcorry 认领】 没人的话我领拉哈
closed by:#5833
BENcorry
No branches or pull requests
AntV Open Source Contribution Plan(可选)
Issue 类型
中级任务
任务介绍
使用facetCircle绘制时,月份的数据和具体图表对应不上:
参考
The text was updated successfully, but these errors were encountered: