Packages

object ZAxisEvents

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ZAxisEvents
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def apply(afterBreaks: UndefOr[Function] = js.undefined, afterSetExtremes: UndefOr[Function] = js.undefined, pointBreak: UndefOr[Function] = js.undefined, pointInBreak: UndefOr[Function] = js.undefined, setExtremes: UndefOr[Function] = js.undefined): ZAxisEvents

    afterBreaks

    An event fired after the breaks have rendered.

    afterSetExtremes

    As opposed to the setExtremes event, this event fires after the final min and max values are computed and corrected for minRange.. . Fires when the minimum and maximum is set for the axis, either by calling the .setExtremes() method or by selecting an area in the chart. 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.. . The new user set minimum and maximum values can be found by event.min and event.max. These reflect the axis minimum and maximum in axis values. The actual data extremes are found in event.dataMin and event.dataMax.

    pointBreak

    An event fired when a break from this axis occurs on a point.

    pointInBreak

    An event fired when a point falls inside a break from this axis.

    setExtremes

    Fires when the minimum and maximum is set for the axis, either by calling the .setExtremes() method or by selecting an area in the chart. 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.. . The new user set minimum and maximum values can be found by event.min and event.max. These reflect the axis minimum and maximum in data values. When an axis is zoomed all the way out from the "Reset zoom" button, event.min and event.max are null, and the new extremes are set based on this.dataMin and this.dataMax.