Interface ChartWithCursorEventMap<T>

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

Type Parameters

Hierarchy

Properties

Properties

cursortargetchange: CursorTargetChangedEvent<T>

Event fired when information displayed by cursor is changed.

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