hvega-0.12.0.7: tests/specs/axis/axisstylex.vl
{
"$schema": "https://vega.github.io/schema/vega-lite/v4.json",
"config": {
"style": {
"x-style": {
"domainColor": "orange",
"gridColor": "lightgreen",
"labelExpr": "if (datum.value <= 100, 'low:' + datum.label, 'high:' + datum.label)"
}
}
},
"data": {
"url": "https://vega.github.io/vega-lite/data/cars.json"
},
"encoding": {
"color": {
"field": "Origin",
"legend": null,
"type": "nominal"
},
"x": {
"axis": {
"style": "x-style"
},
"field": "Horsepower",
"type": "quantitative"
},
"y": {
"field": "Miles_per_Gallon",
"type": "quantitative"
}
},
"mark": "point"
}