Line charts connect individual data points with a continuous path, making it easy to follow how a value changes across an ordered dimension — typically time. When you supply aDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/TargetProcess/tauCharts/llms.txt
Use this file to discover all available pages before exploring further.
color field, Taucharts draws one line per unique value, allowing direct comparison of multiple series on the same axes.
Configuration
Must be
"line".The data field mapped to the horizontal axis. For time series, use a date string or
Date object field and set the dimension type to "measure" with scale "time".The data field mapped to the vertical axis.
A data field used to split data into separate lines. Each unique value produces a distinctly colored series.
A data field used to vary the stroke width or point size along the line.
A data field whose value is rendered as a text label at each data point along the line.
Array of plain objects. Taucharts automatically sorts data by the dimension detected as the independent variable before drawing lines.
Visual configuration object. The
interpolate property controls the curve style used to connect points.Array of plugin instances.
Interpolation options
Setguide.interpolate to control how Taucharts draws the curve between data points.
| Value | Description |
|---|---|
"linear" | Straight segments between each point (default). |
"smooth" | Cubic spline that passes through every point smoothly. |
"smooth-keep-extremum" | Smooth curve that preserves local minima and maxima. |
"step" | Horizontal segment followed by a vertical step at the midpoint. |
"step-before" | Vertical step first, then horizontal — value changes at the start of an interval. |
"step-after" | Horizontal first, then vertical — value changes at the end of an interval. |
For stacked area charts — where series are layered on top of each other rather than overlaid — use
type: "stacked-area". See the area chart reference for details.