Add test for normalized option (#8552)

This commit is contained in:
Ben McCann 2021-03-01 12:27:36 -08:00 committed by GitHub
parent 3214005322
commit cc8e513d0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,39 @@
module.exports = {
threshold: 0.01,
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'
},
distribution: 'linear',
ticks: {
source: 'data'
}
},
y: {
display: false
}
}
}
},
options: {
spriteText: true
}
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB