Documentation / @openassistant/echarts / PcpChartOptionProps
Type Alias: PcpChartOptionProps
PcpChartOptionProps =
object
Defined in: components/echarts/src/pcp/pcp-option.ts:30
Configuration properties for the Parallel Coordinates Plot (PCP) chart.
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
};Properties
isExpanded
isExpanded:
boolean
Defined in: components/echarts/src/pcp/pcp-option.ts:34
pcp
Defined in: components/echarts/src/pcp/pcp-option.ts:31
rawData
rawData:
Record<string,number[]>
Defined in: components/echarts/src/pcp/pcp-option.ts:32
theme
theme:
string
Defined in: components/echarts/src/pcp/pcp-option.ts:33
