Is it possible to implement zoom buttons for quick zooming (+ and - buttons) with chartjs Now I use this code:
pan: {
enabled: true,
mode: 'xy',
rangeMin: {
// Format of min pan range depends on scale type
x: null,
y: null
},
rangeMax: {
// Format of max pan range depends on scale type
x: null,
y: null
}
},
zoom: {
enabled: true,
mode: 'xy',
rangeMin: {
// Format of min pan range depends on scale type
x: 1,
y: 1
},
rangeMax: {
// Format of max pan range depends on scale type
x: 5,
y: 5
}
only by mouse wheel (as default) Thanks