Event fired when the data sets contents are changed
// Example usage
chart.addEventListener('change', (event) => {
console.log(event)
})
Event fired when the data set is cleared
// Example usage
chart.addEventListener('inviewchange', (event) => {
console.log(event)
})
Event fired when the data set max sample count is exceeded.
// Example usage
chart.addEventListener('maxsamplecountexceed', (event) => {
console.log(event)
})
Interface of events trackable by addEventListener and the respective Event types.