mirror of
https://github.com/apache/superset.git
synced 2026-07-20 05:36:00 +00:00
Same bug as in the deckgl fix: `({ transformedProps })` destructures
undefined when the transform returns a flat object instead of wrapping
in `{ transformedProps: { ... } }`. The ECharts charts wrap (so they
work); table, pivot-table, and word-cloud don't, so they were rendering
their inner component with no props.
45 tests across the three plugins still pass.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@superset-ui/plugin-chart-word-cloud
This plugin provides Word Cloud 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 WordCloudChartPlugin from '@superset-ui/plugin-chart-word-cloud';
new WordCloudChartPlugin().configure({ key: 'word-cloud' }).register();
Then use it via SuperChart. See
storybook
for more details.
<SuperChart
chartType="word-cloud"
width={600}
height={600}
formData={...}
queriesData={[{
data: {...},
}]}
/>