Created
October 2, 2020 09:41
-
-
Save sverhoeven/bd7049c8e6eefe1d5f1bc1e62394f427 to your computer and use it in GitHub Desktop.
run-cpp-on-web: vega
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
const root_rule = { | |
"data": {"values": [{"x": -1}]}, | |
"encoding": {"x": {"field": "x", "type": "quantitative"}}, | |
"layer": [ | |
{"mark": {"type": "rule", "strokeDash": [4, 8]}}, | |
{"mark": | |
{ | |
"type": "text", | |
"align": "right", | |
"baseline": "bottom", | |
"dx": -4, | |
"dy": 10, | |
"x": "width", | |
"fontSize": 20, | |
"text": "root = -1.0" | |
} | |
} | |
] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment