0.38.2 • Published 3 years ago

@aydink/plugin-radar-chart v0.38.2

Weekly downloads
6
License
Apache-2.0
Repository
gitlab
Last release
3 years ago

@superset-ui/plugin-chart-table

This plugin is a echarts based radar chart plugin.

Currently compatible with Apache Superset version 0.38.0

Build source

Run

npm run babel

Installation

Add the following to incubator-superset/superset-frontend/package.json dependencies section

    "@aydink/plugin-radar-chart": "^0.38.1",
Run NPM install
cd incubator-superset/superset-frontend
npm install

Add the following to incubator-superset/superset-frontend/src/visualizations/presets/MainPreset.js

// Before FilterBoxChartPlugin
import { EchartsBasicRadarPlugin } from '@aydink/plugin-radar-chart';
// Add to the existing list of plugins quite at the bottom of the file, analogous to the existing entries
 new EchartsBasicRadarPlugin().configure({ 
        key: 'echarts-radar',
    }).register()