hvega-0.5.0.0: tests/specs/sort/custom.vl
{
"mark": "bar",
"data": {
"values": [
{
"a": "A",
"b": 28
},
{
"a": "B",
"b": 55
},
{
"a": "C",
"b": 43
},
{
"a": "Z",
"b": 91
},
{
"a": "Y",
"b": 81
},
{
"a": "X",
"b": 53
}
]
},
"$schema": "https://vega.github.io/schema/vega-lite/v4.json",
"encoding": {
"x": {
"field": "a",
"sort": [
"B",
"A",
"C"
],
"type": "ordinal"
},
"y": {
"field": "b",
"type": "quantitative"
}
}
}