Skip to content

Documentation v1.0.0


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

ts
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

pcp: ParallelCoordinateDataProps

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

Released under the MIT License.