mirror of
https://github.com/apache/superset.git
synced 2026-07-09 08:15:49 +00:00
- Delete all controlPanelModern.tsx files (JSONForms format) - Delete controlPanelReact.tsx and other experimental variants - Rename Word Cloud controlPanelFixed.ts to controlPanel.ts - Update imports to use standard controlPanel files - Verify no string references remain in control panels All visualizations now use their standard controlPanel.ts/tsx files with React component functions. The codebase is now consistent with the new control panel architecture.
@superset-ui/legacy-plugin-chart-parallel-coordinates
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: {...},
}]}
/>