Skip to content

Commit c7de743

Browse files
committed
test: add two more range slider mocks
1 parent 1b627a5 commit c7de743

File tree

4 files changed

+670
-0
lines changed

4 files changed

+670
-0
lines changed
Loading
33 KB
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"data": [
3+
{
4+
"x": [
5+
1,
6+
2,
7+
3
8+
],
9+
"y": [
10+
40,
11+
50,
12+
60
13+
],
14+
"name": "yaxis data",
15+
"type": "scatter"
16+
},
17+
{
18+
"x": [
19+
2,
20+
3,
21+
null,
22+
4,
23+
5
24+
],
25+
"y": [
26+
4,
27+
5,
28+
null,
29+
7,
30+
8
31+
],
32+
"name": "yaxis2 data",
33+
"yaxis": "y2",
34+
"type": "scatter"
35+
}
36+
],
37+
"layout": {
38+
"title": "Double Y Axis Example",
39+
"xaxis": {
40+
"title": "Wavelength (nm)",
41+
"rangeslider": {
42+
"thickness": 0.2
43+
}
44+
},
45+
"yaxis": {
46+
"title": "yaxis title"
47+
},
48+
"yaxis2": {
49+
"title": "yaxis2 title",
50+
"titlefont": {
51+
"color": "rgb(148, 103, 189)"
52+
},
53+
"tickfont": {
54+
"color": "rgb(148, 103, 189)"
55+
},
56+
"side": "right",
57+
"overlaying": "y"
58+
}
59+
}
60+
}

0 commit comments

Comments
 (0)