玫瑰图标签

源码
import { Chart } from '@antv/g2';

const chart = new Chart({
  container: 'container',
  width: 720,
  height: 720,
});

chart.options({
  type: 'interval',
  coordinate: { type: 'polar', outerRadius: 0.85 },
  transform: [{ type: 'groupX', y: 'sum' }],
  data: {
    type: 'fetch',
    value:
      'https://gw.alipayobjects.com/os/bmw-prod/87b2ff47-2a33-4509-869c-dae4cdd81163.csv',
  },
  encode: { x: 'year', color: 'year', y: 'people' },
  scale: { y: { type: 'sqrt' }, x: { padding: 0 } },
  axis: false,
  labels: [
    {
      text: 'people',
      position: 'outside',
      formatter: '~s',
      transform: [{ type: 'overlapDodgeY' }],
    },
  ],
  legend: { color: { length: 400, layout: { justifyContent: 'center' } } },
  animate: { enter: { type: 'waveIn' } },
  tooltip: { items: [{ channel: 'y', valueFormatter: '~s' }] },
});

chart.render();
全站搜索
文档与示例输入关键词开始搜索

输入关键词,查找文档、API 与示例

选择打开Esc关闭