Bubble Chart
Visualize three dimensions of data with positioned, sized bubbles.
Quick Start
import { BubbleChart } from "flitter-ui/chart";
import { Widget } from "@flitterjs/react";
// Create chart widget
const chart = BubbleChart({
style: "toast",
data: {
datasets: [
{
legend: "Series A",
data: [
{ x: 10, y: 20, value: 100, label: "Point 1" },
{ x: 30, y: 50, value: 300, label: "Point 2" },
{ x: 50, y: 40, value: 200, label: "Point 3" },
],
},
],
},
});
// Render with React
<Widget widget={chart} width={600} height={400} />See Integration guide for Svelte, vanilla JS, and more options.
Pastel tones, smooth staggered animations, hover focus effects
Muted tones, minimal animation, clean business dashboard look