@superset-viz-plugins/plugin-chart-table-pivot-new
This plugin provides Table Pivot New 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 TablePivotNewChartPlugin from '@superset-viz-plugin/plugin-chart-table-pivot-new';
new TablePivotNewChartPlugin()
.configure({ key: 'table-pivot-new' })
.register();
File structure generated
├── README.md
├── package.json
├── src
│ ├── TablePivotNew.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