Skip to content

Instantly share code, notes, and snippets.

@sverhoeven
Last active October 2, 2020 09:41
Show Gist options
  • Save sverhoeven/d2c87792a00d4d6de3df4a98f46fd0e2 to your computer and use it in GitHub Desktop.
Save sverhoeven/d2c87792a00d4d6de3df4a98f46fd0e2 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