Chart.js/test/fixtures/scale.timeseries/ticks-reverse-max.js
2021-02-10 08:21:39 -05:00

32 lines
557 B
JavaScript

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