Last active
November 21, 2019 15:32
-
-
Save lbraun/f095a2e9f1be98b25b1df1d8aa96791a to your computer and use it in GitHub Desktop.
Vega Examples
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://vega.github.io/schema/vega/v5.json", | |
"width": 400, | |
"height": 400, | |
"padding": 40, | |
"autosize": {"type": "none", "contains": "padding"}, | |
"signals": [ | |
{"name": "center", "update": "width / 2"} | |
], | |
"data": [ | |
{ | |
"name": "table", | |
"values": [ | |
{"key": "Risk of Conflict", "value": "20%"} | |
] | |
} | |
], | |
"encode": { | |
"enter": { | |
"x": {"signal": "center"}, | |
"y": {"signal": "center"} | |
} | |
}, | |
"marks": [ | |
{ | |
"type": "text", | |
"name": "my-label", | |
"from": {"data": "table"}, | |
"zindex": 1, | |
"encode": { | |
"enter": { | |
"x": {"signal": "0"}, | |
"y": {"signal": "70"}, | |
"text": {"field": "key"}, | |
"align": {"value": "center"}, | |
"baseline": {"value": "middle"}, | |
"fill": {"value": "black"}, | |
"fontWeight": {"value": "bold"}, | |
"fontSize": {"value": 20} | |
} | |
} | |
}, | |
{ | |
"type": "text", | |
"name": "my-value", | |
"from": {"data": "table"}, | |
"zindex": 1, | |
"encode": { | |
"enter": { | |
"x": {"signal": "0"}, | |
"y": {"signal": "0"}, | |
"text": {"field": "value"}, | |
"align": {"value": "center"}, | |
"baseline": {"value": "middle"}, | |
"fill": {"value": "black"}, | |
"fontWeight": {"value": "bold"}, | |
"fontSize": {"value": 80} | |
} | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment