Chart.js/test/fixtures/core.scale/y-axis-position-center.json
Evert Timberg da0535e1ff
Horizontal axis with center position should display labels (#8221)
* Horizontal axes with center positions should have labels
* Linting
* Test updates
* Increase the tolerance for one test
2020-12-22 11:33:53 -05:00

57 lines
1.4 KiB
JSON

{
"config": {
"type": "scatter",
"data": {
"datasets": [{
"data": [{
"x": -20,
"y": -30
}, {
"x": 0,
"y": 0
}, {
"x": 20,
"y": 15
}]
}]
},
"options": {
"scales": {
"x": {
"position": "bottom",
"axis": "x",
"min": -100,
"max": 100,
"gridLines": {
"color": "red",
"drawOnChartArea": false
},
"ticks": {
"display": true
}
},
"y": {
"position": "center",
"axis": "y",
"min": -100,
"max": 100,
"gridLines": {
"color": "red",
"drawOnChartArea": false
},
"ticks": {
"display": true
}
}
}
}
},
"options": {
"canvas": {
"height": 256,
"width": 512
},
"spriteText": true
}
}