ChartEventType
ChartEventType
#
Bases: Enum
The type of event that occurred on the chart.
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 = 'longPressMoveUpdate'
#
LONG_PRESS_START = 'longPressStart'
#
PAN_CANCEL = 'panCancel'
#
When the pointer that previously triggered a pan-start did not complete.
PAN_DOWN = 'panDown'
#
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 = 'panStart'
#
PAN_UPDATE = 'panUpdate'
#
POINTER_ENTER = 'pointerEnter'
#
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 = 'pointerHover'
#
TAP_CANCEL = 'tapCancel'
#
When the pointer that previously triggered a tap-down will not end up causing a tap.
TAP_DOWN = 'tapDown'
#
TAP_UP = 'tapUp'
#
When a pointer that will trigger a tap has stopped contacting the screen.