Chart.js/test/fixtures/scale.timeseries/source-auto.js

32 lines
458 B
JavaScript

module.exports = {
threshold: 0.01,
config: {
type: 'line',
data: {
labels: ['2017', '2018', '2019', '2020', '2025'],
datasets: [{data: [0, 1, 2, 3, 4], fill: false}]
},
options: {
scales: {
x: {
type: 'timeseries',
time: {
parser: 'YYYY',
unit: 'year'
},
ticks: {
source: 'auto'
}
},
y: {
display: false
}
},
legend: false
}
},
options: {
spriteText: true
}
};