Line Chart API
Everything you need to wire up a line chart in code; for the story and demos, see the Line Chart demo.
Import
ts
import "@michi-vz/wc/line-chart";
// <michi-vz-line-chart> is now definedts
import { mountLineChart } from "@michi-vz/core";
const chart = mountLineChart(el, props);Props
| Prop | Type | Default | Description |
|---|---|---|---|
dataSet* | LineDataItem[] | — | Array of line series, each with its own points |
title | string | — | Optional chart title rendered above the plot |
yAxisDomain | [number, number] | — | Fix the y-axis range as [min, max] instead of deriving it from the data |
xAxisDataType | "date_annual" | "date_monthly" | "number" | "number" | How x values are parsed and formatted: yearly dates, monthly dates, or plain numbers |
xAxisFormat | (d: number | string) => string | — | Formats an x tick value into its display label |
yAxisFormat | (d: number | string) => string | — | Formats a y tick value into its display label |
ticks | number | 5 | Approximate number of axis ticks to generate |
tickValues | Array<number | Date> | — | Explicit tick values, overriding the generated ones |
curve | "curveBumpX" | "curveLinear" | "curveMonotoneX" | — | Default interpolation for every series (per-series `curve` wins). |
detectGaps | boolean | false | Auto-derive `certainty` from missing periods (dashes the gap segment). |
expectedStep | number | — | Expected cadence in axis units; REQUIRED for xAxisDataType "number". |
showDataPoints | boolean | false | Whether to draw a marker at each data point (default false) |
enableMouseLine | boolean | false | Whether to show a dashed vertical crosshair line that tracks the cursor (default false) |
singlePointLine | boolean | SinglePointLineConfig | — | true / config draws a horizontal guide line for single-point series. |
filter | Filter | — | Top-N / sort filter applied to the data before rendering |
tooltipFormatter | (d: DataPoint, series: DataPoint[], dataSet: LineDataItem[]) => string | — | Returns custom tooltip HTML for a hovered datum (sanitized before it is inserted) |
onHighlightItem | (labels: string[]) => void | — | Called when the hovered/highlighted label(s) change |
Common props — shared by every chart (14)
| Prop | Type | Default | Description |
|---|---|---|---|
width | number | 1000 | Chart width in pixels |
height | number | 500 | Chart height in pixels |
margin | Margin | { top: 50, right: 50, bottom: 50, left: 60 } | Inner margins (top/right/bottom/left, in px) reserved for axes, titles, and labels |
colors | string[] | — | Categorical palette for series/labels without an explicit colour or colorsMapping entry |
colorsMapping | Record<string, string> | — | Explicit label -> colour map; takes precedence over the palette and per-item colours |
highlightItems | string[] | — | Labels to emphasise; all other marks dim |
disabledItems | string[] | — | Labels to hide and exclude from scales/stacks |
renderer | "svg" | "canvas" | "svg" | Render as inline SVG (default) or to a canvas (faster for large datasets); getContext() is identical either way |
locale | string | — | BCP-47 locale used for number and date formatting |
skipColorMappingDispatch | boolean | false | External-CSS mode: unmapped labels resolve to transparent and onColorMappingGenerated is not emitted, so mark colours come from your CSS via the data-label-safe contract |
enableTransitions | boolean | true | Animate updates with CSS transitions (default true) |
onColorMappingGenerated | (mapping: Record<string, string>) => void | — | Called with the resolved label -> colour map after the chart assigns colours |
onChartDataProcessed | (context: ChartContext) => void | — | Called with the renderer-agnostic ChartContext whenever the data is (re)processed |
onDataWarning | (warnings: DataWarning[]) => void | — | Called with any non-fatal data warnings (duplicate labels, non-finite values, gaps, ...) |
Events
The web component dispatches these bubbling CustomEvents (the engine exposes the same via the on* callbacks in the table above):
| Event | Detail | Fires when |
|---|---|---|
michi-vz:highlight | string[] | hover highlight changes |
michi-vz:colormapping | Record<string, string> | a color mapping is generated |
michi-vz:dataprocessed | ChartContext | data is (re)processed |
michi-vz:datawarning | DataWarning[] | input warnings are detected |
getContext()
mountLineChart(el, props).getContext() returns a renderer-agnostic LineChartContext (structured stats + a deterministic natural-language summary + an a11y table). See LLM context.
Source
Props are typed as LineChartProps in @michi-vz/core.