-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathgl3d_annotations.json
118 lines (118 loc) · 2.05 KB
/
gl3d_annotations.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"data": [
{
"type": "scatter3d",
"x": ["2017-01-01", "2017-02-10", "2017-03-20", "2017-04-29"],
"y": ["A", "B", "C", "B"],
"z": [1, 1e3, 1e5, 100]
}
],
"layout": {
"scene": {
"camera": {
"eye": { "x": 2.1, "y": 0.1, "z": 0.9 }
},
"xaxis": {
"title": { "text": "" }
},
"yaxis": {
"title": { "text": "" }
},
"zaxis": {
"type": "log",
"title": { "text": "" }
},
"annotations": [
{
"showarrow": false,
"x": "2017-01-01",
"y": "A",
"z": 0,
"text": "Point 1",
"xanchor": "left",
"xshift": 10,
"opacity": 0.7
},
{
"x": "2017-02-20",
"y": "B",
"z": 4,
"text": "Point 2<br><b>watch out!!</b>",
"textangle": 30,
"ax": 30,
"ay": -100,
"font": {
"color": "blue",
"size": 20
},
"bgcolor": "#d3d3d3",
"bordercolor": "#000",
"borderwidth": 2,
"borderpad": 10,
"standoff": 12,
"arrowcolor": "blue",
"arrowsize": 3,
"arrowwidth": 1,
"arrowhead": 5
},
{
"x": "2017-03-20",
"y": "C",
"z": 5,
"ax": 50,
"ay": 0,
"text": "<i>Threshold</i>",
"bordercolor": "#000",
"borderwidth": 2,
"arrowhead": 7,
"width": 100,
"height": 50,
"xanchor": "left",
"yanchor": "bottom",
"align": "right",
"valign": "bottom"
},
{
"x": "2016-12-25",
"y": "A",
"z": 6,
"text": "autorange bump!",
"ax": -50
},
{
"x": "2017-04-29",
"y": "B",
"z": 2,
"ax": 50,
"ay": 50,
"arrowside": "start+end",
"arrowhead": 2,
"startarrowhead": 3,
"standoff": 10,
"startstandoff": 20
},
{
"x": "2017-04-29",
"y": "B",
"z": 2,
"ax": -100,
"ay": 0,
"arrowside": "start",
"startarrowhead": 6,
"standoff": 10,
"startstandoff": 20
},
{
"x": "2017-04-29",
"y": "B",
"z": 2,
"ax": 80,
"ay": -50,
"arrowside": "none",
"standoff": 10,
"startstandoff": 20
}
]
}
}
}