带子散点图
/**
* A recreation of this demo: https://vega.github.io/vega-lite/examples/tick_strip.html
*/
import { Chart } from '@antv/g2';
const chart = new Chart({
container: 'container',
height: 300,
});
chart.options({
type: 'point',
coordinate: { transform: [{ type: 'transpose' }] },
data: {
type: 'fetch',
value:
'https://gw.alipayobjects.com/os/bmw-prod/2c813e2d-2276-40b9-a9af-cf0a0fb7e942.csv',
},
transform: [{ type: 'sortX', channel: 'x' }],
encode: {
y: 'Horsepower',
x: 'Cylinders',
// color: 'Cylinders',
shape: 'line',
size: 20,
},
scale: {
x: { type: 'point' },
y: { zero: true },
color: { type: 'ordinal' },
},
});
chart.render();