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