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.
Data safe · 2 numeric fields checkedData Truth Lens
The current data satisfies this chart’s declared numeric contract:
x: month · scale domain · values requiredy: revenue · scale domain · gaps allowed
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} />