Chart.js/test/fixtures/scale.time/custom-parser.js
Jukka Kurkela 3b915cbdd3
Convert some of the time scale tests to fixtures (#7154)
* Convert some of time scale tick tests to fixtures
* A little more threshold
2020-02-28 18:56:22 -05:00

42 lines
653 B
JavaScript

module.exports = {
threshold: 0.01,
config: {
type: 'line',
data: {
labels: ['foo', 'bar'],
datasets: [{
data: [0, 1],
fill: false
}],
},
options: {
scales: {
x: {
type: 'time',
position: 'bottom',
time: {
unit: 'day',
round: true,
parser: function(label) {
return label === 'foo' ?
moment('2000/01/02', 'YYYY/MM/DD') :
moment('2016/05/08', 'YYYY/MM/DD');
}
},
ticks: {
source: 'labels'
}
},
y: {
display: false
}
},
legend: false
}
},
options: {
spriteText: true,
canvas: {width: 256, height: 128}
}
};