Parallel Coordinates

This work is based on Kai's Parallel Coordinates
Home / Demo / Parallel Coordinates
Parallel Coordinates

Renderer: Canvas

Module: vizart-path

Data: Nutrients (7k)

Doc: API

import { parallelCoordinates } from 'vizart-path';
import 'vizart-path/dist/vizart-path.css';

const options = {
	chart: {
		margin: { left: 30, right: 30, top: 10, bottom: 30 }
	},
	plots: {
		colorDimension: 'group',
		hiddenAxis: ['name'],
	}
};

const data = ...
const chart = parallelCoordinates('#chart', options);
chart.render(data);