pzc 162ee32029 add echarts radar plugin | 4 년 전 | |
---|---|---|
.. | ||
.github | 4 년 전 | |
docs | 4 년 전 | |
packages | 4 년 전 | |
.gitignore | 4 년 전 | |
.npmrc | 4 년 전 | |
.travis.yml | 4 년 전 | |
CHANGELOG.md | 4 년 전 | |
LICENSE | 4 년 전 | |
README.md | 4 년 전 | |
buildAssets.js | 4 년 전 | |
commitlint.config.js | 4 년 전 | |
lerna.json | 4 년 전 | |
package.json | 4 년 전 | |
package1.json | 4 년 전 | |
read.txt | 4 년 전 | |
tsconfig.options.json | 4 년 전 |
WIP.
The initial purpose of this repo is to support Echarts radar in Superset. You can also use it as a reference on how to support other visualizations of Echarts.
Snapshot in Superset:
See also:
Current master: http://echarts-basic.iamhd.top
Note: You have to customize your own netlify to use this.
| Package | Version | Note | |--|--|--| | @dmicros/superset-ui-preset-chart-echarts-basic | | README|
See README to use
Please read the contributing guidelines which include development environment setup and other things you should know about coding in this repo.
Note: This repo is created with template at https://github.com/apache-superset/superset-ui-plugins-template .
The following is a typical plugin class:
export default class EchartsBasicRadarPlugin extends ChartPlugin {
constructor() {
super({
controlPanel,
loadChart: () => import('../EchartsBase'),
metadata,
transformProps,
});
}
}
Let's break it down:
Apache-2.0