Skip to content

Commit d7a9dcf

Browse files
committed
update img src in bar-with-images sample
1 parent 19c6275 commit d7a9dcf

File tree

4 files changed

+24
-24
lines changed

4 files changed

+24
-24
lines changed

samples/react/bar/bar-with-images.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@
100100
enabled: false,
101101
},
102102
stroke: {
103-
colors: ["#fff"],
104-
width: 0.2
103+
width: 1,
104+
colors: ['#000'],
105105
},
106106
labels: Array.apply(null, {length: 32}).map(function(el, index){
107107
return index + 1;
@@ -132,10 +132,10 @@
132132
type: 'image',
133133
opacity: 0.87,
134134
image: {
135-
src: '../../assets/images/4274635880_809a4b9d0d_z.jpg',
136-
width: 466,
137-
height: 406
138-
}
135+
src: 'https://cdn.pixabay.com/photo/2023/10/08/17/04/swirls-8302543_1280.jpg',
136+
width: 600,
137+
height: 600,
138+
},
139139
},
140140
},
141141

samples/source/bar/bar-with-images.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ dataLabels: {
3131
enabled: false,
3232
},
3333
stroke: {
34-
colors: ["#fff"],
35-
width: 0.2
34+
width: 1,
35+
colors: ['#000'],
3636
},
3737
labels: Array.apply(null, {length: 32}).map(function(el, index){
3838
return index + 1;
@@ -63,10 +63,10 @@ fill: {
6363
type: 'image',
6464
opacity: 0.87,
6565
image: {
66-
src: '../../assets/images/4274635880_809a4b9d0d_z.jpg',
67-
width: 466,
68-
height: 406
69-
}
66+
src: 'https://cdn.pixabay.com/photo/2023/10/08/17/04/swirls-8302543_1280.jpg',
67+
width: 600,
68+
height: 600,
69+
},
7070
},
7171
</options>
7272

samples/vanilla-js/bar/bar-with-images.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@
8383
enabled: false,
8484
},
8585
stroke: {
86-
colors: ["#fff"],
87-
width: 0.2
86+
width: 1,
87+
colors: ['#000'],
8888
},
8989
labels: Array.apply(null, {length: 32}).map(function(el, index){
9090
return index + 1;
@@ -115,10 +115,10 @@
115115
type: 'image',
116116
opacity: 0.87,
117117
image: {
118-
src: '../../assets/images/4274635880_809a4b9d0d_z.jpg',
119-
width: 466,
120-
height: 406
121-
}
118+
src: 'https://cdn.pixabay.com/photo/2023/10/08/17/04/swirls-8302543_1280.jpg',
119+
width: 600,
120+
height: 600,
121+
},
122122
},
123123
};
124124

samples/vue/bar/bar-with-images.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@
103103
enabled: false,
104104
},
105105
stroke: {
106-
colors: ["#fff"],
107-
width: 0.2
106+
width: 1,
107+
colors: ['#000'],
108108
},
109109
labels: Array.apply(null, {length: 32}).map(function(el, index){
110110
return index + 1;
@@ -135,10 +135,10 @@
135135
type: 'image',
136136
opacity: 0.87,
137137
image: {
138-
src: '../../assets/images/4274635880_809a4b9d0d_z.jpg',
139-
width: 466,
140-
height: 406
141-
}
138+
src: 'https://cdn.pixabay.com/photo/2023/10/08/17/04/swirls-8302543_1280.jpg',
139+
width: 600,
140+
height: 600,
141+
},
142142
},
143143
},
144144

0 commit comments

Comments
 (0)