@arthanasti/legacy-plugin-chart-sankey-loop
v0.15.18
Published
Superset Legacy Chart - Sankey Diagram with Loops
Downloads
29
Readme
@arthanasti/legacy-plugin-chart-sankey-loop
This plugin provides Sankey Diagram with loops 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 SankeyLoopChartPlugin from '@arthanasti/legacy-plugin-chart-sankey-loop';
new SankeyLoopChartPlugin().configure({ key: 'sankey' }).register();
Then use it via SuperChart
. See
storybook
for more details.
<SuperChart
chartType="sankey-loop"
width={600}
height={600}
formData={...}
queryData={{
data: {...},
}}
/>