intelligent/auto/auto-pie
Example page
/**
* AVA: https://github.com/antvis/AVA
* g2-extension-ava: https://github.com/antvis/g2-extensions/tree/master/ava
*/
import { Chart } from '@antv/g2';
import { Auto } from '@antv/g2-extension-ava';
const chart = new Chart({
container: 'container',
});
chart.options({
type: Auto,
data: [
{ type: '分类一', value: 27 },
{ type: '分类二', value: 25 },
{ type: '分类三', value: 18 },
{ type: '分类四', value: 15 },
{ type: '分类五', value: 10 },
{ type: 'Other', value: 5 },
],
});
chart.render();