0.0.3 • Published 2 years ago

@puliyadivinod/plugin-chart-table-selectable v0.0.3

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 years ago

@puliyadivinod/plugin-chart-table-selectable

Version David (path)

This plugin provides Table Selectable 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 TableSelectableChartPlugin from '@puliyadivinod/plugin-chart-table-selectable';

new TableSelectableChartPlugin().configure({ key: 'table_selectable' }).register();

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

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