Machine-readable page content
Canonical: https://semiotic.nteract.io/playground/line-chart
Line Chart Playground
Experiment with LineChart props in real time. Adjust the controls below the chart to see how each prop affects the visualization, then copy the generated code.
Generated Code
The link restores this exact configuration; the config is a portable ChartConfig artifact.
JSX
import { LineChart } from "semiotic" const data = [ { month: 1, revenue: 12000 }, { month: 2, revenue: 18000 }, { month: 3, revenue: 14000 }, // ...12 months ] <LineChart data={data} />