mirror of
https://github.com/apache/superset.git
synced 2026-07-27 17:12:36 +00:00
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Co-authored-by: Joe Li <joe@preset.io>
Adapted for 6.0-release:
- Dropped the `allColumns` block and ENTIRE_ROW formatting option;
ObjectFormattingEnum.ENTIRE_ROW was introduced in master-only PR
#35897 (feat: add formatting column and formatting object to
conditional formatting table) which is not on 6.0-release.
- The customer-visible fix (fallback to datasource columns when query
results are empty) is preserved for 6.0's existing numericColumns
control surface.
- Test file: dropped the two `allColumns`/ENTIRE_ROW assertions and
the dedicated ENTIRE_ROW test for the same reason.
(cherry picked from commit a60860c969)
@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: {...},
}]}
/>