Chart.js/test/fixtures/scale.time/ticks-capacity.js
2021-02-10 08:21:39 -05:00

29 lines
480 B
JavaScript

module.exports = {
threshold: 0.01,
config: {
type: 'line',
data: {
labels: [
'2012-01-01', '2013-01-01', '2014-01-01', '2015-01-01',
'2016-01-01', '2017-01-01', '2018-01-01', '2019-01-01'
]
},
options: {
scales: {
x: {
type: 'time',
time: {
unit: 'year'
}
},
y: {
display: false
}
}
}
},
options: {
spriteText: true
}
};