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

40 lines
662 B
JavaScript

module.exports = {
threshold: 0.01,
tolerance: 0.002,
config: {
type: 'line',
data: {
datasets: [{
data: [
{x: '2017', y: null},
{x: '2018', y: 1},
{x: '2019', y: 2},
{x: '2020', y: 3},
{x: '2021', y: 4}
],
fill: false
}]
},
options: {
normalized: true,
scales: {
x: {
type: 'timeseries',
time: {
parser: 'YYYY'
},
ticks: {
source: 'data'
}
},
y: {
display: false
}
}
}
},
options: {
spriteText: true
}
};