mirror of
https://github.com/apache/superset.git
synced 2026-07-27 09:02:29 +00:00
Adds low-risk import-and-assert tests across migrated plugins, guarding the classes of bugs found while testing this branch: - is_timeseries charts must expose a datetime control (calendar, horizon, rose, partition). Partition genuinely lacked one, so add sections.legacyTimeseriesTime to its control panel (same 500 as paired-t-test otherwise). - deck.gl Multiple Layers must issue an empty query (self-fetches its layers). - deck.gl Arc is timeseries only when time_grain_sqla is set. - Time Pivot's numeric x-axis format must render a number, not the literal SMART_NUMBER string. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
@superset-ui/plugin-chart-partition
This plugin provides Partition 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 PartitionChartPlugin from '@superset-ui/plugin-chart-partition';
new PartitionChartPlugin().configure({ key: 'partition' }).register();
Then use it via SuperChart. See
storybook
for more details.
<SuperChart
chartType="partition"
width={600}
height={600}
formData={...}
queriesData={[{
data: {...},
}]}
/>