Static documentation

Data Visualisation Catalogue Gallery

Rendered markdown notes for the catalogue review, compiler mapping, implementation tracker, and chart method specs.

38 chart methods
10 with reference assets
43 documents

Parallel Coordinates Plot

Source: Data Visualisation Catalogue - Parallel Coordinates Plot

Why This Belongs In The Compiler Gallery

Parallel coordinates test repeated axis layout and grouped paths. The compiler now derives per-axis positions, per-axis ticks, and one point row per observation per dimension so the existing path glyph can render each observation as a polyline.

Data Contract

Each raw row represents one observation with multiple quantitative dimensions.

FieldTypePurpose
segmentcategoricalObservation label and color key.
reach, cost, quality, loyaltyquantitativeRaw dimensions.
axiscategorical, derivedDimension name for each emitted point.
axisIndexquantitative, derivedSort order for path construction.
x, yquantitative, derivedPer-axis point coordinate.

Expected Visual

Each dimension renders as a vertical axis. Every observation becomes one polyline crossing all axes, with color keyed by observation.

Compiler Mapping

Compiler partMapping
Data sourceobservations and derived parallel-axes, parallel-ticks, and axis-points.
Transformlayout with parallelAxes, parallelAxisTicks, and parallelCoordinates layout kinds.
ScalesOrdinal color scale over observations. Per-axis quantitative normalization is owned by the layout transform.
LayersAxis/tick line guides, axis/tick labels, grouped path polylines, and point handles.

Faithfulness Notes

The first pass covers the core catalogue form. Remaining work is brushing, categorical dimensions, inverted-axis policy, and generated multi-axis guide presets.