Skip to content

Commit 2c3298d

Browse files
committed
add new tests
1 parent 85283b5 commit 2c3298d

File tree

5 files changed

+3434
-0
lines changed

5 files changed

+3434
-0
lines changed
106 KB
Loading
96.7 KB
Loading
Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
{
2+
"data": [{
3+
"xaxis": "x",
4+
"yaxis": "y",
5+
"type": "bar",
6+
"orientation": "h",
7+
"x": [1, 10, 100],
8+
"y": [1, 10, 100]
9+
}, {
10+
"xaxis": "x2",
11+
"yaxis": "y2",
12+
"type": "heatmap",
13+
"colorbar": {
14+
"tickangle": -90,
15+
"dtick": 10,
16+
"ticks": "inside",
17+
"ticklen": 12,
18+
"tickwidth": 4,
19+
"ticklabelposition": "inside top"
20+
},
21+
"x": [1, 10, 100],
22+
"y": [1, 10, 100],
23+
"z": [
24+
[0, 50, 100],
25+
[50, 100, 0],
26+
[100, 0, 50]
27+
]
28+
}, {
29+
"xaxis": "x3",
30+
"yaxis": "y3",
31+
"type": "scatter",
32+
"mode": "lines",
33+
"x": [-100, 0, 100],
34+
"y": [-100, 0, 100]
35+
}, {
36+
"xaxis": "x4",
37+
"yaxis": "y4",
38+
"type": "bar",
39+
"orientation": "v",
40+
"x": [1, 10, 100],
41+
"y": [1, 10, 100]
42+
}],
43+
"layout": {
44+
"xaxis": {
45+
"anchor": "y",
46+
"domain": [0, 0.475],
47+
"side": "bottom",
48+
"ticklabelposition": "inside",
49+
"gridcolor": "white"
50+
},
51+
"yaxis": {
52+
"anchor": "x",
53+
"domain": [0, 0.475],
54+
"side": "left",
55+
"ticklabelposition": "inside",
56+
"gridcolor": "white"
57+
},
58+
"xaxis2": {
59+
"anchor": "y2",
60+
"domain": [0.525, 1],
61+
"side": "bottom",
62+
"ticklabelposition": "inside",
63+
"gridcolor": "white"
64+
},
65+
"yaxis2": {
66+
"anchor": "x2",
67+
"domain": [0, 0.475],
68+
"side": "right",
69+
"ticklabelposition": "inside",
70+
"gridcolor": "white"
71+
},
72+
"xaxis3": {
73+
"anchor": "y3",
74+
"domain": [0.525, 1],
75+
"side": "top",
76+
"ticklabelposition": "inside",
77+
"gridcolor": "white"
78+
},
79+
"yaxis3": {
80+
"anchor": "x3",
81+
"domain": [0.525, 1],
82+
"side": "right",
83+
"ticklabelposition": "inside",
84+
"gridcolor": "white"
85+
},
86+
"xaxis4": {
87+
"anchor": "y4",
88+
"domain": [0, 0.475],
89+
"side": "top",
90+
"ticklabelposition": "inside",
91+
"gridcolor": "white"
92+
},
93+
"yaxis4": {
94+
"anchor": "x4",
95+
"domain": [0.525, 1],
96+
"side": "left",
97+
"ticklabelposition": "inside",
98+
"gridcolor": "white"
99+
},
100+
"font": {
101+
"size": 24
102+
},
103+
"plot_bgcolor": "lightblue",
104+
"showlegend": false,
105+
"width": 1000,
106+
"height": 1000,
107+
"margin": {
108+
"t": 40,
109+
"b": 40,
110+
"l": 40,
111+
"r": 40
112+
}
113+
}
114+
}

0 commit comments

Comments
 (0)