斜率图

源码
/**
 * A recreation of this demo: https://observablehq.com/@d3/slope-chart
 */
import { Chart } from '@antv/g2';

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

chart.options({
  type: 'line',
  data: {
    type: 'fetch',
    value:
      'https://gw.alipayobjects.com/os/bmw-prod/f0bbdcaa-9dbf-4d44-95c1-ac2e26765023.csv',
  },
  encode: { x: 'year', y: 'receipts', series: 'country', color: '#000' },
  scale: { x: { type: 'point', padding: 0.25 } },
  labels: [
    {
      text: (d) => `${d.country} ${d.receipts}`,
      selector: 'first',
      transform: [{ type: 'overlapDodgeY' }],
      fontSize: 10,
      dx: -3,
      textAlign: 'end',
    },
    {
      text: (d) => `${d.receipts} ${d.country}`,
      selector: 'last',
      transform: [{ type: 'overlapDodgeY' }],
      fontSize: 10,
      dx: 3,
    },
  ],
});

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

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

选择打开Esc关闭