Skip to content

Instantly share code, notes, and snippets.

@leetschau
Created November 5, 2024 06:37
Show Gist options
  • Save leetschau/5f27002d41175298ddebaa48445ee0c3 to your computer and use it in GitHub Desktop.
Save leetschau/5f27002d41175298ddebaa48445ee0c3 to your computer and use it in GitHub Desktop.
{
"$schema": "https://vega.github.io/schema/vega/v5.json",
"description": "A Demo",
"width": 700,
"height": 500,
"padding": 0,
"autosize": "none",
"data": [
{
"name": "nodes",
"url": "https://gist.githubusercontent.com/leetschau/7bdb0606f9e951616a5c906411abf1a3/raw/5adc91c70793bf173cca76b335cdb3cc8f54b4bc/mydata.json",
"format": {"type": "json", "property": "nodes"}
},
{
"name": "edges",
"url": "https://gist.githubusercontent.com/leetschau/7bdb0606f9e951616a5c906411abf1a3/raw/5adc91c70793bf173cca76b335cdb3cc8f54b4bc/mydata.json",
"format": {"type": "json", "property": "edges"}
}
],
"marks": [
{
"from": {"data": "nodes"},
"zindex": 1
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment