module.exports = { config: { type: 'scatter', options: { scales: { x: { position: {y: 0}, min: -10, max: 10, grid: { borderDash: (ctx) => ctx.index % 2 === 0 ? [6, 3] : [], color: 'lightGray', lineWidth: 3, }, ticks: { display: false }, }, y: { position: {x: 0}, min: -10, max: 10, grid: { borderDash: (ctx) => ctx.index % 2 === 0 ? [6, 3] : [], color: 'lightGray', lineWidth: 3, }, ticks: { display: false }, } } } } };