|
před 5 roky | |
---|---|---|
.. | ||
.github | před 5 roky | |
docs | před 5 roky | |
packages | před 5 roky | |
.gitignore | před 5 roky | |
.npmrc | před 5 roky | |
.travis.yml | před 5 roky | |
CHANGELOG.md | před 5 roky | |
LICENSE | před 5 roky | |
README.md | před 5 roky | |
buildAssets.js | před 5 roky | |
commitlint.config.js | před 5 roky | |
lerna.json | před 5 roky | |
package.json | před 5 roky | |
package1.json | před 5 roky | |
read.txt | před 5 roky | |
tsconfig.options.json | před 5 roky |
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