superset/superset-frontend/temporary_superset_ui/superset-ui/plugins/superset-ui-plugins/packages/superset-ui-preset-chart-xy
2021-11-26 11:45:25 +08:00
..
src refactor: remove new box plot code until refactored (#25) 2021-11-26 11:45:25 +08:00
types feat: add typescript declaration for external packages (#12) 2021-11-26 11:45:23 +08:00
package.json v0.10.3 2021-11-26 11:45:25 +08:00
README.md docs: ✏️ update link from superset-ui-legacy to ui-plugins 2021-11-26 11:45:22 +08:00

@superset-ui/preset-chart-xy

Version David (path)

This plugin provides Box Plot 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 { BoxPlotChartPlugin } from '@superset-ui/preset-chart-xy';

new BoxPlotChartPlugin()
  .configure({ key: 'box-plot' })
  .register();

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

<SuperChart
  chartType="box-plot"
  chartProps={{
    width: 600,
    height: 600,
    formData: {...},
    payload: {
      data: {...},
    },
  }}
/>