Event fired when information displayed by cursor is changed.
// Example usage
chart.addEventListener('cursortargetchange', (event) => {
console.log(event)
})
Event fired when the components visibility on web page changes.
// Example usage
chart.addEventListener('inviewchange', (event) => {
console.log(event)
})
Event fired when the visible nodes change
// Example usage
chart.addEventListener('viewchange', (event) => {
console.log(event)
})
Interface of events trackable by addEventListener and the respective Event types.