Skip to main content

ChartEventType

The type of event that occurred on the chart.

Inherits: enum.Enum

Properties

  • LONG_PRESS_END - When a pointer stops contacting the screen after a long press gesture was detected.
  • LONG_PRESS_MOVE_UPDATE - When a pointer is moving after being held in contact at the same location for a long period of time.
  • LONG_PRESS_START - When a pointer has remained in contact with the screen at the same location for a long period of time.
  • 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 the screen and moving is no longer in contact with the screen.
  • 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 has moved again.
  • POINTER_ENTER - 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 - 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 - The pointer has moved with respect to the device while the pointer is not in contact with the device.
  • 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 screen.
  • TAP_UP - When a pointer that will trigger a tap has stopped contacting the screen.
  • UNDEFINED - An undefined event.

Properties

LONG_PRESS_ENDclass-attributeinstance-attribute

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_UPDATEclass-attributeinstance-attribute

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_STARTclass-attributeinstance-attribute

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

PAN_CANCELclass-attributeinstance-attribute

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

PAN_DOWNclass-attributeinstance-attribute

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

PAN_ENDclass-attributeinstance-attribute

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

PAN_STARTclass-attributeinstance-attribute

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

PAN_UPDATEclass-attributeinstance-attribute

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

POINTER_ENTERclass-attributeinstance-attribute

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_EXITclass-attributeinstance-attribute

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_HOVERclass-attributeinstance-attribute

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

TAP_CANCELclass-attributeinstance-attribute

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

TAP_DOWNclass-attributeinstance-attribute

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

TAP_UPclass-attributeinstance-attribute

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

UNDEFINEDclass-attributeinstance-attribute

An undefined event.