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
27 lines
402 B
JavaScript
27 lines
402 B
JavaScript
module.exports = {
|
|
config: {
|
|
type: 'scatter',
|
|
options: {
|
|
scales: {
|
|
y: {
|
|
max: 1225.2,
|
|
min: 369.5,
|
|
ticks: {
|
|
includeBounds: false
|
|
}
|
|
},
|
|
x: {
|
|
min: 20,
|
|
max: 100,
|
|
ticks: {
|
|
includeBounds: false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
options: {
|
|
spriteText: true
|
|
}
|
|
};
|