Files
superset2/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates
Evan Rusackas 5fe8ba8fac fix(storybook): add theme prop to all SuperChart instances in stories
Add supersetTheme import and theme prop to all 44 storybook story files
that use SuperChart to satisfy the required ChartPropsConfig.theme property.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-27 15:38:44 -08:00
..

@superset-ui/legacy-plugin-chart-parallel-coordinates

Version Libraries.io

This plugin provides Parallel Coordinates for Superset.

Usage

Configure key, which can be any string, and register the plugin. This key will be used to lookup this chart throughout the app.

import ParallelCoordinatesChartPlugin from '@superset-ui/legacy-plugin-chart-parallel-coordinates';

new ParallelCoordinatesChartPlugin()
  .configure({ key: 'parallel-coordinates' })
  .register();

Then use it via SuperChart. See storybook for more details.

<SuperChart
  chartType="parallel-coordinates"
  width={600}
  height={600}
  formData={...}
  queriesData={[{
    data: {...},
  }]}
/>