-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathwidgets.json
48 lines (48 loc) · 1.09 KB
/
widgets.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
{
"chains_plotly": {
"name": "Chains chart example Plotly",
"description": "Get current TVL of all chains and plot it with Plotly",
"category": "Crypto",
"type": "chart",
"endpoint": "chains",
"gridData": {
"w": 40,
"h": 9
}
},
"chains_table": {
"name": "Chains Chart example",
"description": "A built in chart widget example",
"category": "Crypto",
"endpoint": "chains_table",
"gridData": {
"w": 20,
"h": 9
},
"data": {
"table": {
"chartView": {
"enabled": true,
"chartType": "bar"
},
"showAll": false,
"columnsDefs": [
{
"headerName": "Name",
"field": "name",
"chartDataType": "category"
},
{
"headerName": "Total Value Locked",
"field": "tvl"
},
{
"headerName": "Token Symbol",
"field": "tokenSymbol",
"chartDataType": "category"
}
]
}
}
}
}