Skip to content

Commit 41499e8

Browse files
committed
Add multiple axes test
1 parent 1fef351 commit 41499e8

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"data": [
3+
{
4+
"x": [
5+
0,
6+
1,
7+
2
8+
],
9+
"y": [
10+
0,
11+
1,
12+
2
13+
],
14+
"mode": "lines+markers",
15+
"type": "scattergl"
16+
},
17+
{
18+
"x": [
19+
0,
20+
1,
21+
2
22+
],
23+
"y": [
24+
2,
25+
1,
26+
0
27+
],
28+
"mode": "lines+markers",
29+
"type": "scattergl",
30+
"yaxis": "y2"
31+
}
32+
],
33+
"layout": {
34+
"width": 700,
35+
"height": 500,
36+
"yaxis": {
37+
"side": "left"
38+
},
39+
"yaxis2": {
40+
"side": "right",
41+
"overlaying": "y"
42+
}
43+
}
44+
}

0 commit comments

Comments
 (0)