superset/superset-frontend/plugins/legacy-preset-chart-nvd3
Geido 313ee596f5
fix(Dashboard): Color inconsistency on refreshes and conflicts (#27439)
2024-06-20 15:30:11 +02:00
..
src fix(Dashboard): Color inconsistency on refreshes and conflicts (#27439) 2024-06-20 15:30:11 +02:00
test feat(formatters): Add custom d3-time-format locale (#24263) 2024-06-10 12:24:33 -06:00
CHANGELOG.md chore: Reformat changelogs (#26815) 2024-01-26 21:48:17 +01:00
README.md docs: replace broken david badges with libraries.io (#27903) 2024-04-04 23:00:23 -06:00
package.json build(deps): update dompurify requirement from ^3.0.11 to ^3.1.0 in /superset-frontend/plugins/legacy-preset-chart-nvd3 (#28065) 2024-04-18 12:04:09 -06: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/legacy-preset-chart-nvd3

Version Libraries.io

This plugin provides Big Number for Superset.

Usage

Import the preset and register. This will register all the chart plugins under nvd3.

import { NVD3ChartPreset } from '@superset-ui/legacy-preset-chart-nvd3';

new NVD3ChartPreset().register();

or register charts one by one. Configure key, which can be any string, and register the plugin. This key will be used to lookup this chart throughout the app.

import {
  AreaChartPlugin,
  LineChartPlugin,
} from '@superset-ui/legacy-preset-chart-nvd3';

new AreaChartPlugin().configure({ key: 'area' }).register();
new LineChartPlugin().configure({ key: 'line' }).register();

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

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