-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathutils.py
34 lines (34 loc) · 980 Bytes
/
utils.py
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
def empty_figure(text="No data"):
return {
"layout": {
"paper_bgcolor": "rgba(0,0,0,0)",
"plot_bgcolor": "rgba(0,0,0,0)",
"showlegend": False,
"xaxis": {
"range": [0, 1],
"showgrid": False,
"zeroline": False,
"showline": False,
"ticks": "",
"showticklabels": False,
},
"yaxis": {
"range": [0, 1],
"showgrid": False,
"zeroline": False,
"showline": False,
"ticks": "",
"showticklabels": False,
},
"annotations": [
{
"x": 0.5,
"y": 0.5,
"xref": "x",
"yref": "y",
"text": text,
"showarrow": False,
}
],
},
}