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
复现代码
import { RadialBar } from '@antv/g2plot'; const data = [ { name: 'X6', star: 297 }, { name: 'G' }, { name: 'AVA', star: 805 }, { name: 'G2Plot', star: 1478 }, { name: 'L7', star: 2029 }, { name: 'G6', star: 7100 }, { name: 'F2', star: 7346 }, { name: 'G2', star: 10178 }, ]; const bar = new RadialBar('container', { width: 400, height: 300, data, xField: 'name', yField: 'star', // maxAngle: 90, //最大旋转角度, radius: 0.8, innerRadius: 0.2, tooltip: { formatter: (datum) => { return { name: 'star数', value: datum.star }; }, }, }); bar.render();
运行以上代码后,页面崩溃
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
复现代码
运行以上代码后,页面崩溃
The text was updated successfully, but these errors were encountered: