object ZAxisEvents
- Alphabetic
- By Inheritance
- ZAxisEvents
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
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 forminRange
.. . 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 byevent.min
andevent.max
. These reflect the axis minimum and maximum in axis values. The actual data extremes are found inevent.dataMin
andevent.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 byevent.min
andevent.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
andevent.max
are null, and the new extremes are set based onthis.dataMin
andthis.dataMax
.