Interface PointLineAreaSeriesEventMap

Interface of events trackable by addEventListener and the respective Event types.

Hierarchy

Properties

change: _DataSetXYChangedEvent

Event fired when the data sets contents are changed

 // Example usage
chart.addEventListener('change', (event) => {
console.log(event)
})
clear: {
    type: "clear";
}

Event fired when the data set is cleared

 // Example usage
chart.addEventListener('inviewchange', (event) => {
console.log(event)
})

Type declaration

  • type: "clear"
dispose: DisposeEvent
highlightchange: HighlightChangeEvent
loop: {
    type: "loop";
}

Type declaration

  • type: "loop"

Event fired when the data set max sample count is exceeded.

 // Example usage
chart.addEventListener('maxsamplecountexceed', (event) => {
console.log(event)
})
visiblechange: VisibleChangedEvent