Chart.js/test/fixtures/scale.time/custom-parser.js
Jukka Kurkela 416062bf68
Update tick positioning (#8657)
* Update tick positioning
* Update tests
2021-03-17 18:22:21 -04:00

42 lines
802 B
JavaScript

module.exports = {
threshold: 0.01,
tolerance: 0.0025,
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
}
}
}
},
options: {
spriteText: true,
canvas: {width: 256, height: 128}
}
};