Skip to content

Commit aa38ca5

Browse files
committed
🎉first commit
1 parent 96164b6 commit aa38ca5

10 files changed

+24654
-14
lines changed

.eslintrc.js

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ const libName = toCamelCase(packageConfig.name);
99
module.exports = {
1010
globals: {
1111
[libName]: libName,
12+
echarts: 'echarts',
13+
spriteECharts: 'spriteECharts',
1214
},
1315
extends: "eslint-config-sprite",
1416
plugins: ['html'],

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.DS_Store
22
.docz
3-
dist
43
node_modules
54
yarn.lock
65
package-lock.json

README.md

+41-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,42 @@
1-
# Sprite Template
1+
# Sprite Extend ECharts
22

3-
The standard project template.
3+
这是SpriteJS的ECharts插件。
4+
5+
## 使用方法
6+
7+
```js
8+
import {use, Scene} from 'spritejs';
9+
import spriteECharts from 'sprite-extend-echarts';
10+
11+
const {EChart} = use(spriteECharts);
12+
13+
const scene = new Scene('#container', {
14+
viewport: [700, 700],
15+
resolution: [1400, 1400],
16+
});
17+
18+
const chart = new EChart({
19+
size: [700, 700],
20+
});
21+
22+
chart.setOption({
23+
title: {
24+
text: 'ECharts 入门示例',
25+
},
26+
tooltip: {},
27+
legend: {
28+
data: ['销量'],
29+
},
30+
xAxis: {
31+
data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子'],
32+
},
33+
yAxis: {},
34+
series: [{
35+
name: '销量',
36+
type: 'bar',
37+
data: [5, 20, 36, 10, 10, 20],
38+
}],
39+
});
40+
41+
scene.layer().append(chart);
42+
```

dist/sprite-extend-echarts.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)