Event fired when the axis interval changes.
// Example usage
chart.addEventListener('intervalchange', (event) => {
console.log(event)
})
Event fired when the axis is stopped or released.
// Example usage
chart.addEventListener('stoppedchange', (event) => {
console.log(event)
})
Interface of events trackable by addEventListener and the respective Event types.