hvega-0.12.0.7: tests/specs/axis/axisOverlapGreedy.vl
{
"$schema": "https://vega.github.io/schema/vega-lite/v4.json",
"data": {
"values": [
{
"x": 0.1,
"y": 100
},
{
"x": 0.11,
"y": 101
},
{
"x": 0.2,
"y": 102
},
{
"x": 0.21,
"y": 103
},
{
"x": 0.5,
"y": 101
}
]
},
"encoding": {
"x": {
"axis": {
"labelFontSize": 20,
"labelOverlap": "greedy"
},
"field": "x",
"type": "quantitative"
},
"y": {
"axis": {
"labelFontSize": 20,
"labelOverlap": "greedy"
},
"field": "y",
"type": "quantitative"
}
},
"mark": "circle"
}