flitter-ui (지금 베타입니다)

Scatter Chart

Plot individual data points to reveal correlations and distributions.

Quick Start
import { ScatterChart } from "flitter-ui/chart";
import { Widget } from "@flitterjs/react";

// Create chart widget
const chart = ScatterChart({
  style: "toast",
  data: {
    datasets: [
      {
        legend: "Series A",
        data: [
          { x: 10, y: 20, label: "Point 1" },
          { x: 30, y: 50, label: "Point 2" },
          { x: 50, y: 40, 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

Go Deeper

Advanced — Custom renderers, headless API →