Chart.js/test/fixtures/core.scale/cartesian-axis-border-settings.json
Jukka Kurkela 021561072b
Disable all plugins when options.plugins = false (#8098)
Disabling all plugins when options.plugins = false
2020-11-23 17:58:03 -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": {
"axis": "x",
"min": -100,
"max": 100,
"gridLines": {
"borderColor": "blue",
"borderWidth": 5,
"color": "red",
"drawBorder": true,
"drawOnChartArea": false
},
"ticks": {
"display": false
}
},
"y": {
"axis": "y",
"min": -100,
"max": 100,
"gridLines": {
"color": "red",
"drawOnChartArea": false
},
"ticks": {
"display": false
}
}
}
}
},
"options": {
"canvas": {
"height": 256,
"width": 512
}
}
}