Chart.js/test/fixtures/scale.time/skip-null-gridlines.js
Evert Timberg 9db3680440
null or undefined should skip grid lines in the time scale (#9252)
* `null` or `undefined` should skip grid lines in the time scale

* Refactor implementation per code review
2021-06-12 10:47:14 -04:00

33 lines
619 B
JavaScript

module.exports = {
threshold: 0.01,
tolerance: 0.0025,
config: {
type: 'line',
data: {
labels: ['2017', '2018', '2019', '2020', '2025'],
datasets: [{data: [0, 1, 2, 3, 4], fill: false}]
},
options: {
scales: {
x: {
type: 'time',
time: {
parser: 'YYYY',
unit: 'year'
},
ticks: {
source: 'auto',
callback: (tick, index) => index % 2 === 0 ? null : tick,
}
},
y: {
display: false
}
}
}
},
options: {
spriteText: true
}
};