Created
November 5, 2024 06:37
-
-
Save leetschau/5f27002d41175298ddebaa48445ee0c3 to your computer and use it in GitHub Desktop.
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", | |
"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