-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathzzz_zerolinelayer_below.json
58 lines (58 loc) · 1.02 KB
/
zzz_zerolinelayer_below.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"data": [
{
"type": "bar",
"x": [-1, 0, 2, 3],
"y": [-1, 2, -3, 4],
"name": "xy"
},
{
"line": {
"width": 10
},
"mode": "lines",
"x": [-1, 0, 2, 3],
"y": [-3, 1, -1, 2],
"xaxis": "x2",
"yaxis": "y2",
"name": "x2y2"
}
],
"layout": {
"title": {
"text": "All zerolines below traces (x/x2: pink, y/y2: black)"
},
"width": 600,
"height": 400,
"xaxis": {
"zeroline": true,
"zerolinewidth": 5,
"zerolinecolor": "pink",
"zerolinelayer": "below traces"
},
"xaxis2": {
"overlaying": "x",
"zeroline": true,
"zerolinewidth": 5,
"zerolinecolor": "pink",
"zerolinelayer": "below traces",
"side": "top"
},
"yaxis": {
"zeroline": true,
"zerolinewidth": 5,
"zerolinecolor": "black",
"zerolinelayer": "below traces",
"range": [-1, 4]
},
"yaxis2": {
"zeroline": true,
"zerolinewidth": 5,
"zerolinecolor": "black",
"zerolinelayer": "below traces",
"range": [-3, 2],
"overlaying": "y",
"side": "right"
}
}
}