forked from EconomicsObservatory/api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault_vega_lite_spec.json
More file actions
94 lines (94 loc) · 2.04 KB
/
default_vega_lite_spec.json
File metadata and controls
94 lines (94 loc) · 2.04 KB
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
{
"config": {
"view": {"continuousWidth": 400, "continuousHeight": 300, "stroke": null},
"font": "Circular Std Book"
},
"title": {
"text": "",
"lineHeight":0,
"offset":-10,
"baseline":"line-top",
"color": "#36B7B4",
"subtitle": "",
"subtitleColor": "#676A86"
},
"data": {
"values": []
},
"mark": {
"type": "area",
"color": {
"gradient": "linear",
"stops": [
{"color": "#ffffff00", "offset": 0.2},
{"color": "#36B7B4", "offset": 0.8}
],
"x1": 1,
"y1": 1,
"x2": 1,
"y2": 0
},
"interpolate": "monotone",
"line": {"color": "#36B7B4"},
"opacity": 1
},
"transform": [
{
"filter": "datum.value"
}
],
"encoding": {
"x": {
"field": "date",
"type": "temporal",
"axis": {
"domainColor": "#676A86",
"domainOpacity": 0.5,
"grid": false,
"labelAngle": 0,
"labelColor": "#676A86",
"labelOpacity": 0.7,
"orient": "bottom",
"tickColor": "#676A86",
"tickCount": 10,
"tickOpacity": 0.5,
"title": "",
"titleAlign": "center",
"titleAnchor": "middle",
"titleColor": "#676A86",
"titleFontSize": 12,
"titleOpacity": 0.8,
"titleX": 207,
"titleY": -15
}
},
"y": {
"field": "value",
"type": "quantitative",
"axis": {
"domainColor": "#676A86",
"domainOpacity": 0.5,
"format": ".0f",
"gridColor": "#676A86",
"gridDash": [1, 5],
"gridOpacity": 0.5,
"labelColor": "#676A86",
"labelOpacity": 0.7,
"labelPadding": 5,
"tickColor": "#676A86",
"tickCount": 8,
"tickOpacity": 0.5,
"ticks": false,
"title": "",
"titleAlign": "left",
"titleAngle": 0,
"titleBaseline": "bottom",
"titleColor": "#676A86",
"titleFontSize": 12,
"titleOpacity": 0.8,
"titleX": 0,
"titleY": -7
}
}
}
}