Skip to content

ChartEventType

Inherits: Enum

The type of event that occurred on the chart.

Properties

  • LONG_PRESS_END

    When a pointer stops contacting the screen after a long press

  • LONG_PRESS_MOVE_UPDATE

    When a pointer is moving after being held in contact at the same

  • LONG_PRESS_START

    When a pointer has remained in contact with the screen at the

  • PAN_CANCEL

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

  • PAN_DOWN

    When a pointer has contacted the screen and might begin to move

  • PAN_END

    When a pointer that was previously in contact with

  • PAN_START

    When a pointer has contacted the screen and has begun to move.

  • PAN_UPDATE

    When a pointer that is in contact with the screen and moving

  • POINTER_ENTER

    The pointer has moved with respect to the device while the pointer is or is

  • POINTER_EXIT

    The pointer has moved with respect to the device while the

  • POINTER_HOVER

    The pointer has moved with respect to the device while the pointer is not

  • TAP_CANCEL

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

  • TAP_DOWN

    When a pointer that might cause a tap has contacted the

  • TAP_UP

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

  • UNDEFINED

    An undefined event.

Properties#

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' #

When a pointer is moving after being held in contact at the same location for a long period of time. Reports the new position and its offset from the original down position.

LONG_PRESS_START = 'longPressStart' #

When a pointer has remained in contact with the screen at the same location for a long period of time.

PAN_CANCEL = 'panCancel' #

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

PAN_DOWN = 'panDown' #

When a pointer has contacted the screen and might begin to move

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' #

When a pointer has contacted the screen and has begun to move.

PAN_UPDATE = 'panUpdate' #

When a pointer that is in contact with the screen and moving has moved again.

POINTER_ENTER = 'pointerEnter' #

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

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' #

The pointer has moved with respect to the device while the pointer is not in contact with the device.

TAP_CANCEL = 'tapCancel' #

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

TAP_DOWN = 'tapDown' #

When a pointer that might cause a tap has contacted the screen.

TAP_UP = 'tapUp' #

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

UNDEFINED = 'undefined' #

An undefined event.