Skip to main content

Type Alias: PcpChartOptionProps

PcpChartOptionProps: object

Defined in: packages/echarts/src/pcp/component/pcp-option.ts:27

Configuration properties for the Parallel Coordinates Plot (PCP) chart.

Type declaration

isExpanded

isExpanded: boolean

pcp

pcp: ParallelCoordinateDataProps

rawData

rawData: Record<string, number[]>

theme

theme: string

Param

Parallel coordinate data properties containing configuration for the visualization

Param

Raw data object with variable names as keys and their corresponding numeric values as arrays

Param

Theme name to be applied to the chart

Param

Boolean flag indicating if the chart is in expanded state

Example

const pcpProps: PcpChartOptionProps = {
pcp: { ... },
rawData: {
'population': [100, 200, 300],
'income': [50000, 60000, 70000]
},
theme: 'light',
isExpanded: false
};