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-rose
This plugin provides Nightingale Rose 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 RoseChartPlugin from '@superset-ui/legacy-plugin-chart-rose';
new RoseChartPlugin().configure({ key: 'rose' }).register();
Then use it via SuperChart. See
storybook
for more details.
<SuperChart
chartType="rose"
width={600}
height={600}
formData={...}
queriesData={[{
data: {...},
}]}
/>