{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "config": { "axisX": { "style": "x-style" }, "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": { "field": "Horsepower", "type": "quantitative" }, "y": { "field": "Miles_per_Gallon", "type": "quantitative" } }, "mark": "point" }