力导向图
import { Chart } from '@antv/g2';
import { schemeTableau10 } from 'd3-scale-chromatic';
const chart = new Chart({
container: 'container',
autoFit: true,
});
chart.options({
type: 'forceGraph',
data: {
type: 'fetch',
value: 'https://assets.antv.antgroup.com/g2/miserable.json',
},
scale: { color: { range: schemeTableau10 } },
});
chart.render();