Skip to content

Commit c460fe9

Browse files
liuzhenyingaiyin.lzy
and
aiyin.lzy
authored
fix: 对称条形图 & 迷你折柱面图 demo (#1982)
* fix: 对称条形图 & 迷你折柱面图 demo * fix: 更新漏斗图图片 Co-authored-by: aiyin.lzy <[email protected]>
1 parent bab01a9 commit c460fe9

File tree

12 files changed

+10
-17
lines changed

12 files changed

+10
-17
lines changed

examples/bidirectional-bar/basic/demo/meta.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
"zh": "基础水平方对称条形图",
1111
"en": "Basic bullet plot"
1212
},
13-
"screenshot": "https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*FhaLRItZu-oAAAAAAAAAAABkARQnAQ"
13+
"screenshot": "https://gw.alipayobjects.com/mdn/rms_d314dd/afts/img/A*9wdPQIJyXdoAAAAAAAAAAAAAARQnAQ"
1414
},
1515
{
1616
"filename": "layout.ts",
1717
"title": {
1818
"zh": "基础垂直方向对称条形图",
1919
"en": "Basic bullet plot"
2020
},
21-
"screenshot": "https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*FhaLRItZu-oAAAAAAAAAAABkARQnAQ"
21+
"screenshot": "https://gw.alipayobjects.com/mdn/rms_d314dd/afts/img/A*dpEiSZht_1AAAAAAAAAAAAAAARQnAQ"
2222
}
2323
]
2424
}

examples/case/statistical-scenario/demo/meta.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"zh": "漏斗图(趋势)",
3636
"en": "Statistical Charts-Funnel"
3737
},
38-
"screenshot": "https://gw.alicdn.com/tfs/TB158FxuAT2gK0jSZPcXXcKkpXa-646-500.png"
38+
"screenshot": "https://gw.alipayobjects.com/mdn/rms_d314dd/afts/img/A*Tf6bTKBux8gAAAAAAAAAAAAAARQnAQ"
3939
}
4040
]
4141
}

examples/tiny/tiny-area/demo/area-annotation.ts

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ const data = [
2727

2828
const tinyArea = new TinyArea('container', {
2929
height: 60,
30-
width: 300,
3130
autoFit: false,
3231
data,
3332
smooth: true,

examples/tiny/tiny-area/demo/basic-area.ts

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ const data = [
2727

2828
const tinyArea = new TinyArea('container', {
2929
height: 60,
30-
width: 300,
3130
autoFit: false,
3231
data,
3332
smooth: true,

examples/tiny/tiny-area/demo/filled-area.ts

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ const data = [
2727

2828
const tinyArea = new TinyArea('container', {
2929
height: 60,
30-
width: 300,
3130
autoFit: false,
3231
data,
3332
smooth: true,

examples/tiny/tiny-area/demo/meta.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@
1010
"zh": "基础迷你面积图",
1111
"en": "Basic area plot"
1212
},
13-
"screenshot": "https://gw.alipayobjects.com/mdn/rms_d314dd/afts/img/A*8Qf7Q45ubMMAAAAAAAAAAAAAARQnAQ"
13+
"screenshot": "https://gw.alipayobjects.com/mdn/rms_d314dd/afts/img/A*1dr5RKX8gWIAAAAAAAAAAAAAARQnAQ"
1414
},
1515
{
1616
"filename": "area-annotation.ts",
1717
"title": {
1818
"zh": "带辅助信息的迷你面积图",
1919
"en": "Tiny area plot with annotations"
2020
},
21-
"screenshot": "https://gw.alipayobjects.com/mdn/rms_d314dd/afts/img/A*RVNgQ641-xoAAAAAAAAAAAAAARQnAQ"
21+
"screenshot": "https://gw.alipayobjects.com/mdn/rms_d314dd/afts/img/A*0zwrR62OaHQAAAAAAAAAAAAAARQnAQ"
2222
},
2323
{
2424
"filename": "filled-area.ts",
2525
"title": {
2626
"zh": "平铺填充迷你面积图",
2727
"en": "Filled tiny area plot"
2828
},
29-
"screenshot": "https://gw.alipayobjects.com/mdn/rms_d314dd/afts/img/A*RVNgQ641-xoAAAAAAAAAAAAAARQnAQ"
29+
"screenshot": "https://gw.alipayobjects.com/mdn/rms_d314dd/afts/img/A*tN1MTpkoO8gAAAAAAAAAAAAAARQnAQ"
3030
}
3131
]
3232
}

examples/tiny/tiny-column/demo/basic-column.ts

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ const data = [274, 337, 81, 497, 666, 219, 269];
44

55
const tinyColumn = new TinyColumn('container', {
66
height: 64,
7-
width: 240,
87
autoFit: false,
98
data,
109
tooltip: {

examples/tiny/tiny-column/demo/column-annotation.ts

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ const data = [274, 337, 81, 497, 666, 219, 269];
44

55
const tinyColumn = new TinyColumn('container', {
66
height: 64,
7-
width: 240,
87
autoFit: false,
98
data,
109
tooltip: false,

examples/tiny/tiny-column/demo/meta.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
"zh": "基础迷你柱形图",
1111
"en": "Basic column plot"
1212
},
13-
"screenshot": "https://gw.alipayobjects.com/mdn/rms_d314dd/afts/img/A*lJWoS5D2OC0AAAAAAAAAAAAAARQnAQ"
13+
"screenshot": "https://gw.alipayobjects.com/mdn/rms_d314dd/afts/img/A*tLNqQpXbZWgAAAAAAAAAAAAAARQnAQ"
1414
},
1515
{
1616
"filename": "column-annotation.ts",
1717
"title": {
1818
"zh": "带辅助线的迷你柱形图",
1919
"en": "Tiny column plot with annotation"
2020
},
21-
"screenshot": "https://gw.alipayobjects.com/mdn/rms_d314dd/afts/img/A*xIFLRY4wT4EAAAAAAAAAAAAAARQnAQ"
21+
"screenshot": "https://gw.alipayobjects.com/mdn/rms_d314dd/afts/img/A*wu-HT5PBCF0AAAAAAAAAAAAAARQnAQ"
2222
}
2323
]
2424
}

examples/tiny/tiny-line/demo/basic-line.ts

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ const data = [
2727

2828
const tinyLine = new TinyLine('container', {
2929
height: 60,
30-
width: 300,
3130
autoFit: false,
3231
data,
3332
smooth: true,

examples/tiny/tiny-line/demo/line-annotation.ts

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ const data = [
2727

2828
const tinyLine = new TinyLine('container', {
2929
height: 60,
30-
width: 300,
3130
autoFit: false,
3231
data,
3332
smooth: true,

examples/tiny/tiny-line/demo/meta.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
"zh": "基础迷你折线图",
1111
"en": "Basic line plot"
1212
},
13-
"screenshot": "https://gw.alipayobjects.com/mdn/rms_d314dd/afts/img/A*v0_RR7osTYsAAAAAAAAAAAAAARQnAQ"
13+
"screenshot": "https://gw.alipayobjects.com/mdn/rms_d314dd/afts/img/A*rXczRa7xdu8AAAAAAAAAAAAAARQnAQ"
1414
},
1515
{
1616
"filename": "line-annotation.ts",
1717
"title": {
1818
"zh": "带辅助线的迷你折线图",
1919
"en": "Tiny line plot with annotation"
2020
},
21-
"screenshot": "https://gw.alipayobjects.com/mdn/rms_d314dd/afts/img/A*XmW4RbbtsdoAAAAAAAAAAAAAARQnAQ"
21+
"screenshot": "https://gw.alipayobjects.com/mdn/rms_d314dd/afts/img/A*KShOSrCq0X4AAAAAAAAAAAAAARQnAQ"
2222
}
2323
]
2424
}

0 commit comments

Comments
 (0)