Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fa8aa5c

Browse files
committed
test: add stack with gaps mock
1 parent b7f7944 commit fa8aa5c

File tree

2 files changed

+175
-0
lines changed

2 files changed

+175
-0
lines changed
18.8 KB
Loading
Lines changed: 175 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,175 @@
1+
{
2+
"data": [
3+
{
4+
"x": [
5+
"A",
6+
"B",
7+
"C",
8+
"D",
9+
"E",
10+
"F",
11+
"G"
12+
],
13+
"y": [
14+
null,
15+
null,
16+
null,
17+
null,
18+
7,
19+
null,
20+
6
21+
],
22+
"name": "AA",
23+
"type": "bar"
24+
},
25+
{
26+
"x": [
27+
"A",
28+
"B",
29+
"C",
30+
"D",
31+
"E",
32+
"F",
33+
"G"
34+
],
35+
"y": [
36+
8,
37+
null,
38+
null,
39+
null,
40+
null,
41+
null
42+
],
43+
"name": "BB",
44+
"type": "bar"
45+
},
46+
{
47+
"x": [
48+
"A",
49+
"B",
50+
"C",
51+
"D",
52+
"E",
53+
"F",
54+
"G"
55+
],
56+
"y": [
57+
null,
58+
null,
59+
null,
60+
1,
61+
3,
62+
null
63+
],
64+
"name": "CC",
65+
"type": "bar"
66+
},
67+
{
68+
"x": [
69+
"A",
70+
"B",
71+
"C",
72+
"D",
73+
"E",
74+
"F",
75+
"G"
76+
],
77+
"y": [
78+
null,
79+
4,
80+
4,
81+
null,
82+
null,
83+
null
84+
],
85+
"name": "DD",
86+
"type": "bar"
87+
},
88+
{
89+
"x": [
90+
"A",
91+
"B",
92+
"C",
93+
"D",
94+
"E",
95+
"F",
96+
"G"
97+
],
98+
"y": [
99+
null,
100+
null,
101+
null,
102+
8,
103+
null,
104+
null,
105+
3
106+
],
107+
"name": "EE",
108+
"type": "bar"
109+
},
110+
{
111+
"x": [
112+
"A",
113+
"B",
114+
"C",
115+
"D",
116+
"E",
117+
"F",
118+
"G"
119+
],
120+
"y": [
121+
null,
122+
null,
123+
null,
124+
2,
125+
null,
126+
null
127+
],
128+
"name": "FF",
129+
"type": "bar"
130+
},
131+
{
132+
"x": [
133+
"A",
134+
"B",
135+
"C",
136+
"D",
137+
"E",
138+
"F",
139+
"G"
140+
],
141+
"y": [
142+
null,
143+
null,
144+
null,
145+
null,
146+
null,
147+
1
148+
],
149+
"name": "GG",
150+
"type": "bar"
151+
}
152+
],
153+
"layout": {
154+
"xaxis": {
155+
"type": "category",
156+
"range": [
157+
-0.5,
158+
6.5
159+
],
160+
"autorange": true
161+
},
162+
"barmode": "stack",
163+
"yaxis": {
164+
"type": "linear",
165+
"range": [
166+
0,
167+
11.578947368421053
168+
],
169+
"autorange": true
170+
},
171+
"height": 450,
172+
"width": 1100,
173+
"autosize": true
174+
}
175+
}

0 commit comments

Comments
 (0)