Skip to main content

Component Events

The annotate, measure, and range brush interaction modes fire component events that allow the implementation of custom functionality when a user interacts with the chart or chart element.

Annotation Events

NameDescription
onAnnotationAddFires when a user adds an annotation by clicking on the chart.
onAnnotationRemove

Fires when an annotation is removed from the chart by:

  • Right-clicking on an annotation's dot or info box.
  • Clicking the clear annotations menu button.
onAnnotationSelectFires when an annotation is selected by double-clicking on its info box.
onAnnotationUpdateFires when an annotation is updated by moving the dot or info box.
onAnnotationVisibleFires when an annotation's info box is hidden or shown by double-clicking on its dot.

Annotation Event Properties

NameDescriptionProperty Type
annotationObject containing uuid, axis, pen, dot, and infoBox properties of the annotation instance the event refers to.Annotation Instance open_in_new.png


Measurement Events

NameDescription
onMeasurementAddFires when a user adds a measurement by clicking twice in separate locations on the chart.
onMeasurementRemove

Fires when a measurement is removed from the chart by:

  • Right-clicking on a measurement line or info box.
  • Adding a measurement when there are already the maximum number of measurements allowed.
  • Clicking the clear measurements menu button.
onMeasurementSelectFires when a measurement is selected by double-clicking on its info box.
onMeasurementUpdateFires when a measurement is updated by changing the line coordinates or moving the info box.
onMeasurementVisibleFires when a measurement's info box is hidden or shown by double-clicking on its line.

Measurement Event Properties

NameDescriptionProperty Type
measurementObject containing axis, line, and infoBox properties of the measurement instance the event refers to.Measurement Instance open_in_new.png



Range Brush Events

NameDescription
onRangeBrushAddFires when a user adds a range brush by clicking twice in separate locations on the chart.
onRangeBrushRemove

Fires when a range brush is removed from the chart by:

  • Right-clicking on a range brush.
  • Adding a range brush when there are already the maximum number of range brushes allowed.
  • Clicking the clear range brushes menu button.
onRangeBrushSelectFires when a range brush is selected by double-clicking on its info box.
onRangeBrushUpdateFires when a range brush is updated by changing the range coordinates.

Range Brush Event Properties

NameDescriptionProperty Type
rangeArray of objects containing xAxis, start, and end properties of the range brush instance the event refers to for each x-axis configured on the chart.Range Instance[] open_in_new.png