mirror of
https://github.com/apache/superset.git
synced 2026-07-10 00:35:39 +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-chord
This plugin provides Chord Diagram 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 ChordChartPlugin from '@superset-ui/legacy-plugin-chart-chord';
new ChordChartPlugin().configure({ key: 'chord' }).register();
Then use it via SuperChart. See
storybook
for more details.
<SuperChart
chartType="chord"
width={600}
height={600}
formData={...}
queriesData={[{
data: {...},
}]}
/>