https://github.com/spritejs/sprite-extend-echarts
Rendering echarts with spritejs.
https://github.com/spritejs/sprite-extend-echarts
Last synced: about 2 months ago
JSON representation
Rendering echarts with spritejs.
- Host: GitHub
- URL: https://github.com/spritejs/sprite-extend-echarts
- Owner: spritejs
- Created: 2019-06-13T02:04:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-09T09:17:32.000Z (over 6 years ago)
- Last Synced: 2025-01-01T22:29:06.780Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 770 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sprite Extend ECharts
这是SpriteJS的ECharts插件。
## 使用方法
```js
import {use, Scene} from 'spritejs';
import spriteECharts from 'sprite-extend-echarts';
const {EChart} = use(spriteECharts);
const scene = new Scene('#container', {
viewport: [700, 700],
resolution: [1400, 1400],
});
const chart = new EChart({
size: [700, 700],
});
chart.setOption({
title: {
text: 'ECharts 入门示例',
},
tooltip: {},
legend: {
data: ['销量'],
},
xAxis: {
data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子'],
},
yAxis: {},
series: [{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20],
}],
});
scene.layer().append(chart);
```