superset/superset-frontend/plugins/plugin-chart-pivot-table
Stepan 60fe58196a
fix(pivot-table-v2): Added forgotten translation pivot table v2 (#22840)
2024-02-15 10:16:02 -07:00
..
src fix(pivot-table-v2): Added forgotten translation pivot table v2 (#22840) 2024-02-15 10:16:02 -07:00
test refactor: Removes the deprecated GENERIC_CHART_AXES feature flag (#26372) 2024-01-31 09:45:57 -05:00
types chore: adding missing examples in the gallery for some chart types (#22766) 2023-01-18 10:16:40 -07:00
CHANGELOG.md chore: Reformat changelogs (#26815) 2024-01-26 21:48:17 +01:00
README.md refactor(monorepo): move superset-ui to superset(stage 2) (#17552) 2021-11-30 08:29:57 +08:00
package.json build(deps-dev): update @babel/types requirement from ^7.13.12 to ^7.23.9 in /superset-frontend/plugins/plugin-chart-pivot-table (#26881) 2024-01-30 22:51:37 -08:00
tsconfig.json refactor(monorepo): move superset-ui to superset(stage 2) (#17552) 2021-11-30 08:29:57 +08:00

README.md

@superset-ui/plugin-chart-pivot-table

Version

This plugin provides Pivot Table for Superset.

If you change the logic of this plugin, please update pivot_table.

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 PivotTableChartPlugin from '@superset-ui/plugin-chart-pivot-table';

new PivotTableChartPlugin().configure({ key: 'pivot-table-v2' }).register();

Then use it via SuperChart. See storybook for more details.

<SuperChart
  chartType="pivot-table-v2"
  width={600}
  height={600}
  formData={...}
  queriesData={[{
    data: {...},
  }]}
/>

File structure generated

├── package.json
├── README.md
├── tsconfig.json
├── src
│   ├── PivotTableChart.tsx
│   ├── images
│   │   └── thumbnail.png
│   ├── index.ts
│   ├── plugin
│   │   ├── buildQuery.ts
│   │   ├── controlPanel.ts
│   │   ├── index.ts
│   │   └── transformProps.ts
│   └── types.ts
├── test
│   └── index.test.ts
└── types
    └── external.d.ts