hvega-0.11.0.1: tests/specs/scale/axisrange.vl
{
"$schema": "https://vega.github.io/schema/vega-lite/v4.json",
"data": {
"url": "https://vega.github.io/vega-lite/data/cars.json"
},
"encoding": {
"opacity": {
"bin": true,
"field": "Acceleration",
"type": "quantitative"
},
"size": {
"bin": true,
"field": "Acceleration",
"type": "quantitative"
},
"x": {
"field": "Horsepower",
"scale": {
"range": [
50,
"width"
]
},
"type": "quantitative"
},
"y": {
"field": "Miles_per_Gallon",
"scale": {
"range": [
"height",
60
]
},
"type": "quantitative"
}
},
"mark": {
"filled": true,
"stroke": "white",
"strokeWidth": 0.4,
"type": "point"
}
}