hvega-0.12.0.7: tests/specs/gallery/scatter/scatter1.vl
{
"$schema": "https://vega.github.io/schema/vega-lite/v4.json",
"data": {
"url": "https://vega.github.io/vega-lite/data/cars.json"
},
"description": "A scatterplot showing horsepower and miles per gallon for various cars (via point marks).",
"encoding": {
"x": {
"field": "Horsepower",
"type": "quantitative"
},
"y": {
"field": "Miles_per_Gallon",
"type": "quantitative"
}
},
"mark": {
"tooltip": {
"content": "data"
},
"type": "point"
}
}