Skip to content

Bubble chart

import { BubbleChart } from '@arshad-shah/swift-chart';
const chart = new BubbleChart('#chart', { theme: 'midnight' });
chart.setData(rows, {
x: 'gdp', y: 'life',
sizeField: 'pop',
groupField: 'region',
});

Reference