mirror of
https://github.com/chartjs/Chart.js.git
synced 2025-12-08 20:36:08 +00:00
* Add includeBounds option for cartesian ticks * Types, test and fix * lint * Improve linear tick min/max collision detection * Update comments
35 lines
592 B
JavaScript
35 lines
592 B
JavaScript
module.exports = {
|
|
description: 'https://github.com/chartjs/Chart.js/issues/9025',
|
|
threshold: 0.15,
|
|
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: 35
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
options: {
|
|
spriteText: true,
|
|
canvas: {
|
|
height: 214,
|
|
width: 416
|
|
}
|
|
}
|
|
};
|