general/area/area-band
Example page
/**
* A recreation of this demo: https://observablehq.com/@d3/band-chart
*/
import { Chart } from '@antv/g2';
const chart = new Chart({
container: 'container',
autoFit: true,
});
chart.options({
type: 'area',
data: {
type: 'fetch',
value: 'https://assets.antv.antgroup.com/g2/temperatures3.json',
},
scale: { color: { palette: 'reds' } },
encode: {
x: (d) => new Date(d.date),
y: ['low', 'high'],
color: (d) => d.high - d.low,
series: () => undefined,
},
style: { gradient: 'x' },
axis: { x: { title: 'date' } },
});
chart.render();