superset-funnel-plugin
v0.11.11
Published
Superset Legacy Chart - Funnel Chart
Readme
@superset-ui/legacy-plugin-chart-funnels
This plugin provides Funnel Diagram 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 FunnelChartPlugin from '@superset-ui/legacy-plugin-chart-funnel';
new ChordChartPlugin()
.configure({ key: 'funnel' })
.register();Then use it via SuperChart. See storybook for more details.
<SuperChart
chartType="funnel"
chartProps={{
width: 600,
height: 600,
formData: {...},
payload: {
data: {...},
},
}}
/>