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