连续图例

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

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

chart.options({
  type: 'cell',
  data: {
    type: 'fetch',
    value: 'https://assets.antv.antgroup.com/g2/seattle-weather.json',
  },
  transform: [{ type: 'group', color: 'max' }],
  encode: {
    x: (d) => new Date(d.date).getUTCDate(),
    y: (d) => new Date(d.date).getUTCMonth(),
    color: 'temp_max',
  },
  style: { inset: 0.5 },
  scale: { color: { palette: 'rainbow' } },
  legend: {
    color: {
      position: 'bottom',
      ribbonType: 'size',
      indicator: true,
      title: false,
      tick: false,
      layout: {
        justifyContent: 'center',
      },
    },
  },
});

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

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

选择打开Esc关闭