Chart.js/test/fixtures/scale.linear/grace-neg.js
Jukka Kurkela 7ccf9e2d4d
Add grace option for linear scale (#8581)
* Add `grace` option for linear scale

* cc
2021-03-06 17:18:49 -05:00

31 lines
470 B
JavaScript

module.exports = {
description: 'https://github.com/chartjs/Chart.js/issues/7734',
config: {
type: 'bar',
data: {
labels: ['a'],
datasets: [{
data: [-0.18],
}],
},
options: {
indexAxis: 'y',
scales: {
y: {
display: false
},
x: {
grace: '5%'
}
}
}
},
options: {
spriteText: true,
canvas: {
width: 512,
height: 128
}
}
};