Skip to content

Instantly share code, notes, and snippets.

@sverhoeven
Created October 2, 2020 09:41
Show Gist options
  • Save sverhoeven/bd7049c8e6eefe1d5f1bc1e62394f427 to your computer and use it in GitHub Desktop.
Save sverhoeven/bd7049c8e6eefe1d5f1bc1e62394f427 to your computer and use it in GitHub Desktop.
run-cpp-on-web: vega
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