Created
April 2, 2020 04:57
-
-
Save keckelt/0521969959229ce0e83657793ef82fb8 to your computer and use it in GitHub Desktop.
Vega Lite Custom Color Scheme
This file contains hidden or 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-lite/v4.json", | |
"description": "A simple bar chart with embedded data.", | |
"data": { | |
"values": [ | |
{"a": "A", "b": 28}, {"a": "B", "b": 55}, {"a": "C", "b": 43}, | |
{"a": "D", "b": 91}, {"a": "E", "b": 81}, {"a": "F", "b": 53}, | |
{"a": "G", "b": 19}, {"a": "H", "b": 87}, {"a": "I", "b": 52} | |
] | |
}, | |
"mark": "bar", | |
"encoding": { | |
"x": {"field": "a", "type": "ordinal", "axis": {"labelAngle": 0}}, | |
"y": {"field": "b", "type": "quantitative"}, | |
"color": {"field": "a", "type": "nominal"} | |
}, | |
"config": { | |
"range": { | |
"category": ["lightgreen", "lightcoral", "lightsalmon", "lightskyblue", "lightslategrey", "darkseagreen", "burlywood", "orchid"] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment