Skip to content

ChartEventType

ChartEventType #

Bases: Enum

The type of event that occurred on the chart.

LONG_PRESS_END #

LONG_PRESS_END = 'longPressEnd'

When a pointer stops contacting the screen after a long press gesture was detected. Also reports the position where the pointer stopped contacting the screen.

LONG_PRESS_MOVE_UPDATE #

LONG_PRESS_MOVE_UPDATE = 'longPressMoveUpdate'

LONG_PRESS_START #

LONG_PRESS_START = 'longPressStart'

PAN_CANCEL #

PAN_CANCEL = 'panCancel'

When the pointer that previously triggered a pan-start did not complete.

PAN_DOWN #

PAN_DOWN = 'panDown'

PAN_END #

PAN_END = 'panEnd'

When a pointer that was previously in contact with the screen and moving is no longer in contact with the screen.

PAN_START #

PAN_START = 'panStart'

PAN_UPDATE #

PAN_UPDATE = 'panUpdate'

POINTER_ENTER #

POINTER_ENTER = 'pointerEnter'

POINTER_EXIT #

POINTER_EXIT = 'pointerExit'

The pointer has moved with respect to the device while the pointer is or is not in contact with the device, and exited our chart.

POINTER_HOVER #

POINTER_HOVER = 'pointerHover'

TAP_CANCEL #

TAP_CANCEL = 'tapCancel'

When the pointer that previously triggered a tap-down will not end up causing a tap.

TAP_DOWN #

TAP_DOWN = 'tapDown'

TAP_UP #

TAP_UP = 'tapUp'

When a pointer that will trigger a tap has stopped contacting the screen.

UNDEFINED #

UNDEFINED = 'undefined'