Files
superset2/superset-frontend/plugins/plugin-chart-table
Mehmet Salih Yavuz c4aa582ad1 fix(types): React 19 RefObject<T> -> RefObject<T | null>
React 19 made RefObject<T> require a non-null T. useRef returns
RefObject<T | null>. Widen prop type annotations across the codebase so
consumers accept the new shape. Also remove leftover unused ReactElement
imports from the JSX namespace migration.
2026-07-16 14:02:34 +03:00
..

@superset-ui/plugin-chart-table

Version Libraries.io

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: {...},
  }]}
/>