-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathternary_axis_layers.json
59 lines (59 loc) · 1.51 KB
/
ternary_axis_layers.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
{
"data": [
{
"type": "scatterternary",
"mode": "markers",
"a": [70, 75, 5, 10],
"b": [10, 20, 60, 80],
"c": [20, 5, 35, 10],
"name": "not clipped",
"marker": {
"symbol": "square",
"size": 40,
"line": { "width": 4 }
},
"cliponaxis": false
},
{
"type": "scatterternary",
"mode": "markers",
"name": "clipped",
"a": [10, 20, 10, 15, 10, 20],
"b": [90, 70, 20, 5, 10, 10],
"c": [0, 10, 70, 80, 80, 70],
"marker": {
"symbol": "diamond",
"size": 30,
"line": { "width": 4 }
},
"cliponaxis": true
}
],
"layout": {
"ternary": {
"sum": 100,
"aaxis": {
"title": "",
"layer": "below traces",
"linewidth": 4,
"min": 4.5
},
"baxis": {
"title": "",
"layer": "below traces",
"linewidth": 4,
"min": 7.5
},
"caxis": {
"title": "",
"layer": "below traces",
"linewidth": 4,
"min": 7.5
}
},
"title": "ternary axes below traces",
"showlegend": false,
"height": 450,
"width": 500
}
}