Scatter plots place each data record as a point on a two-dimensional grid, with the horizontal position set byDocumentation 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.
x, the vertical position set by y, and optional visual encodings for color and size. They are best suited for exploring correlations and outliers across a continuous or ordinal dataset.
Configuration
Must be
"scatterplot".The data field mapped to the horizontal axis.
The data field mapped to the vertical axis.
A data field used to color-encode points. Each unique value in the field receives a distinct color from the brewer palette.
A data field used to scale point area. Taucharts maps the field’s numeric range to a minimum and maximum bubble size. Omit this field to render all points at the same size.
A data field whose value is rendered as a text label on each point.
Array of plain objects. Each object represents one data point and must contain all fields referenced by
x, y, color, size, and label.Visual configuration for axes, padding, and grid lines. See ChartGuide for the full schema.
Array of plugin instances. Common choices for scatter plots are
legend and tooltip.Example with real data
The
size field must contain numeric values. Taucharts scales the point radius proportionally to the field’s value range across the dataset.