mirror of
https://github.com/chartjs/Chart.js.git
synced 2025-12-08 20:36:08 +00:00
38 lines
705 B
JavaScript
38 lines
705 B
JavaScript
module.exports = {
|
|
config: {
|
|
type: 'scatter',
|
|
options: {
|
|
scales: {
|
|
x: {
|
|
position: {y: 0},
|
|
min: -10,
|
|
max: 10,
|
|
grid: {
|
|
borderColor: 'black',
|
|
borderWidth: 5,
|
|
color: 'lightGray',
|
|
lineWidth: 3,
|
|
},
|
|
ticks: {
|
|
display: false
|
|
},
|
|
},
|
|
y: {
|
|
position: {x: 0},
|
|
min: -10,
|
|
max: 10,
|
|
grid: {
|
|
borderColor: 'black',
|
|
borderWidth: 5,
|
|
color: 'lightGray',
|
|
lineWidth: 3,
|
|
},
|
|
ticks: {
|
|
display: false
|
|
},
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|