Modifier and Type | Interface and Description |
---|---|
static interface |
NavigatorYAxisEventsOptions.AfterBreaks |
static interface |
NavigatorYAxisEventsOptions.AfterSetExtremes |
static interface |
NavigatorYAxisEventsOptions.PointBreak |
static interface |
NavigatorYAxisEventsOptions.PointInBreak |
static interface |
NavigatorYAxisEventsOptions.SetExtremes |
Modifier and Type | Method and Description |
---|---|
NavigatorYAxisEventsOptions.AfterBreaks |
getAfterBreaks()
(Highcharts, Gantt) An event fired after the breaks have rendered.
|
NavigatorYAxisEventsOptions.AfterSetExtremes |
getAfterSetExtremes()
(Highstock) As opposed to the
setExtremes event, this event fires after
the final min and max values are computed and corrected for minRange . |
NavigatorYAxisEventsOptions.PointBreak |
getPointBreak()
(Highcharts, Gantt) An event fired when a break from this axis occurs on
a point.
|
NavigatorYAxisEventsOptions.PointInBreak |
getPointInBreak()
(Highcharts, Highstock, Gantt) An event fired when a point falls inside a
break from this axis.
|
NavigatorYAxisEventsOptions.SetExtremes |
getSetExtremes()
(Highstock) 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. |
void |
setAfterBreaks(NavigatorYAxisEventsOptions.AfterBreaks value)
(Highcharts, Gantt) An event fired after the breaks have rendered.
|
void |
setAfterSetExtremes(NavigatorYAxisEventsOptions.AfterSetExtremes value)
(Highstock) As opposed to the
setExtremes event, this event fires after
the final min and max values are computed and corrected for minRange . |
void |
setPointBreak(NavigatorYAxisEventsOptions.PointBreak value)
(Highcharts, Gantt) An event fired when a break from this axis occurs on
a point.
|
void |
setPointInBreak(NavigatorYAxisEventsOptions.PointInBreak value)
(Highcharts, Highstock, Gantt) An event fired when a point falls inside a
break from this axis.
|
void |
setSetExtremes(NavigatorYAxisEventsOptions.SetExtremes value)
(Highstock) 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. |
@Nullable NavigatorYAxisEventsOptions.AfterBreaks getAfterBreaks()
void setAfterBreaks(NavigatorYAxisEventsOptions.AfterBreaks value)
@Nullable NavigatorYAxisEventsOptions.AfterSetExtremes getAfterSetExtremes()
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, containing common event
information.
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
.void setAfterSetExtremes(NavigatorYAxisEventsOptions.AfterSetExtremes value)
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, containing common event
information.
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
.@Nullable NavigatorYAxisEventsOptions.PointBreak getPointBreak()
void setPointBreak(NavigatorYAxisEventsOptions.PointBreak value)
@Nullable NavigatorYAxisEventsOptions.PointInBreak getPointInBreak()
void setPointInBreak(NavigatorYAxisEventsOptions.PointInBreak value)
@Nullable NavigatorYAxisEventsOptions.SetExtremes getSetExtremes()
.setExtremes()
method or by selecting an area in
the chart. One parameter, event
, is passed to the function, containing
common event information.
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
.void setSetExtremes(NavigatorYAxisEventsOptions.SetExtremes value)
.setExtremes()
method or by selecting an area in
the chart. One parameter, event
, is passed to the function, containing
common event information.
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
.Copyright © 2020. All rights reserved.