Packages

class PlotOptionsErrorbarPointEvents extends Object

Annotations
@RawJSType() @ScalaJSDefined()
Note

JavaScript name: plotOptions-errorbar-point-events

Linear Supertypes
Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PlotOptionsErrorbarPointEvents
  2. Object
  3. Any
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PlotOptionsErrorbarPointEvents()

Value Members

  1. val click: UndefOr[Function]

    Fires when a point is clicked.

    Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

    If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

  2. def hasOwnProperty(v: String): Boolean
    Definition Classes
    Object
  3. def isPrototypeOf(v: Object): Boolean
    Definition Classes
    Object
  4. val mouseOut: UndefOr[Function]

    Fires when the mouse leaves the area close to the point.

    Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

  5. val mouseOver: UndefOr[Function]

    Fires when the mouse enters the area close to the point.

    Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

  6. def propertyIsEnumerable(v: String): Boolean
    Definition Classes
    Object
  7. val remove: UndefOr[Function]

    Fires when the point is removed using the .remove() method.

    Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.

    Since

    1.2.0

  8. val select: UndefOr[Function]

    Fires when the point is selected either programmatically or following a click on the point.

    Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.

    Since

    1.2.0

  9. def toLocaleString(): String
    Definition Classes
    Object
  10. val unselect: UndefOr[Function]

    Fires when the point is unselected either programmatically or following a click on the point.

    Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.

    Since

    1.2.0

  11. val update: UndefOr[Function]

    Fires when the point is updated programmatically through the .update() method.

    Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.

    Since

    1.2.0

  12. def valueOf(): Any
    Definition Classes
    Object