import { CoordinateComponent as CC } from '../runtime'; import { ParallelCoordinate } from '../spec'; export type ParallelOptions = Omit; /** * Parallel coordinate transformations for parallel coordinate. */ export const Parallel: CC = () => [['parallel', 0, 1, 0, 1]]; Parallel.props = {};