Skip to content

Documentation v1.0.0


Documentation / @openassistant/echarts / ParallelCoordinateOutputData

Interface: ParallelCoordinateOutputData ​

Defined in: components/echarts/src/pcp/pcp.tsx:33

Props for the Parallel Coordinate Plot component ParallelCoordinateOutputData

Properties ​

datasetName ​

datasetName: string

Defined in: components/echarts/src/pcp/pcp.tsx:35

Name of the dataset being visualized


id ​

id: string

Defined in: components/echarts/src/pcp/pcp.tsx:34

Unique identifier for the component


isDraggable? ​

optional isDraggable: boolean

Defined in: components/echarts/src/pcp/pcp.tsx:40

Optional flag to enable dragging


isExpanded? ​

optional isExpanded: boolean

Defined in: components/echarts/src/pcp/pcp.tsx:41

Optional flag for expanded state


onSelected? ​

optional onSelected: OnSelected

Defined in: components/echarts/src/pcp/pcp.tsx:43


pcp ​

pcp: ParallelCoordinateDataProps

Defined in: components/echarts/src/pcp/pcp.tsx:37

Configuration for parallel coordinate plot


rawData ​

rawData: Record<string, number[]>

Defined in: components/echarts/src/pcp/pcp.tsx:38

Raw data for the plot, mapping variable names to arrays of values


setIsExpanded()? ​

optional setIsExpanded: (isExpanded) => void

Defined in: components/echarts/src/pcp/pcp.tsx:42

Optional callback to handle expansion state changes

Parameters ​

isExpanded ​

boolean

Returns ​

void


theme? ​

optional theme: string

Defined in: components/echarts/src/pcp/pcp.tsx:39

Optional theme name for the chart ('dark' by default)


variables ​

variables: string[]

Defined in: components/echarts/src/pcp/pcp.tsx:36

Array of variable names to display

Released under the MIT License.