Chart.js/test/fixtures/scale.linear/min-max-skip/rotated-case-2.js
Jukka Kurkela a6f0b37dfe
Further improve linear tick collision estimation (#9129)
* Further improve linear tick collision estimation

* More tolerance

* Re-create fixtures

* And more tolerance
2021-05-20 10:01:47 +03:00

35 lines
593 B
JavaScript

module.exports = {
description: 'https://github.com/chartjs/Chart.js/issues/9025',
threshold: 0.2,
config: {
type: 'scatter',
options: {
scales: {
y: {
max: 1069,
min: 230,
ticks: {
autoSkip: false,
minRotation: 22.5
}
},
x: {
max: 1069,
min: 230,
ticks: {
autoSkip: false,
minRotation: 67.5
}
}
}
}
},
options: {
spriteText: true,
canvas: {
height: 232,
width: 222
}
}
};