Chart.js/test/fixtures/scale.timeseries/source-data-offset-min-max.js
Jukka Kurkela 416062bf68
Update tick positioning (#8657)
* Update tick positioning
* Update tests
2021-03-17 18:22:21 -04:00

34 lines
598 B
JavaScript

module.exports = {
threshold: 0.01,
tolerance: 0.002,
config: {
type: 'line',
data: {
labels: ['2017', '2019', '2020', '2025', '2042'],
datasets: [{data: [0, 1, 2, 3, 4], fill: false}]
},
options: {
scales: {
x: {
type: 'timeseries',
min: '2012',
max: '2051',
offset: true,
time: {
parser: 'YYYY',
},
ticks: {
source: 'data'
}
},
y: {
display: false
}
}
}
},
options: {
spriteText: true
}
};