柱形图动画

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

const fruits = [
  { type: 'Apple', year: '2001', value: 260 },
  { type: 'Orange', year: '2001', value: 100 },
  { type: 'Banana', year: '2001', value: 90 },
  { type: 'Apple', year: '2002', value: 210 },
  { type: 'Orange', year: '2002', value: 150 },
  { type: 'Banana', year: '2002', value: 30 },
];

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

chart.options({
  type: 'interval',
  data: fruits,
  transform: [{ type: 'stackEnter', groupBy: 'color' }, { type: 'dodgeX' }],
  encode: { x: 'year', y: 'value', color: 'type' },
  animate: { enter: { duration: 500 } },
});

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

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

选择打开Esc关闭