Modifier and Type | Interface and Description |
---|---|
static interface |
PlotPivotpointsEventsOptions.Hide |
static interface |
PlotPivotpointsEventsOptions.LegendItemClick |
static interface |
PlotPivotpointsEventsOptions.MouseOut |
static interface |
PlotPivotpointsEventsOptions.MouseOver |
static interface |
PlotPivotpointsEventsOptions.Show |
Modifier and Type | Method and Description |
---|---|
SeriesAfterAnimateCallbackFunction |
getAfterAnimate()
(Highcharts, Highstock, Gantt) Fires after the series has finished its
initial animation, or in case animation is disabled, immediately as the
series is displayed.
|
SeriesCheckboxClickCallbackFunction |
getCheckboxClick()
(Highstock) Fires when the checkbox next to the series' name in the
legend is clicked.
|
SeriesClickCallbackFunction |
getClick()
(Highstock) Fires when the series is clicked.
|
PlotPivotpointsEventsOptions.Hide |
getHide()
(Highstock) Fires when the series is hidden after chart generation time,
either by clicking the legend item or by calling
.hide() . |
PlotPivotpointsEventsOptions.LegendItemClick |
getLegendItemClick()
(Highstock) Fires when the legend item belonging to the series is
clicked.
|
PlotPivotpointsEventsOptions.MouseOut |
getMouseOut()
(Highstock) Fires when the mouse leaves the graph.
|
PlotPivotpointsEventsOptions.MouseOver |
getMouseOver()
(Highstock) Fires when the mouse enters the graph.
|
PlotPivotpointsEventsOptions.Show |
getShow()
(Highstock) Fires when the series is shown after chart generation time,
either by clicking the legend item or by calling
.show() . |
void |
setAfterAnimate(SeriesAfterAnimateCallbackFunction value)
(Highcharts, Highstock, Gantt) Fires after the series has finished its
initial animation, or in case animation is disabled, immediately as the
series is displayed.
|
void |
setCheckboxClick(SeriesCheckboxClickCallbackFunction value)
(Highstock) Fires when the checkbox next to the series' name in the
legend is clicked.
|
void |
setClick(SeriesClickCallbackFunction value)
(Highstock) Fires when the series is clicked.
|
void |
setHide(PlotPivotpointsEventsOptions.Hide value)
(Highstock) Fires when the series is hidden after chart generation time,
either by clicking the legend item or by calling
.hide() . |
void |
setLegendItemClick(PlotPivotpointsEventsOptions.LegendItemClick value)
(Highstock) Fires when the legend item belonging to the series is
clicked.
|
void |
setMouseOut(PlotPivotpointsEventsOptions.MouseOut value)
(Highstock) Fires when the mouse leaves the graph.
|
void |
setMouseOver(PlotPivotpointsEventsOptions.MouseOver value)
(Highstock) Fires when the mouse enters the graph.
|
void |
setShow(PlotPivotpointsEventsOptions.Show value)
(Highstock) Fires when the series is shown after chart generation time,
either by clicking the legend item or by calling
.show() . |
@Nullable SeriesAfterAnimateCallbackFunction getAfterAnimate()
void setAfterAnimate(SeriesAfterAnimateCallbackFunction value)
@Nullable SeriesCheckboxClickCallbackFunction getCheckboxClick()
event
, is passed to the function. The
state of the checkbox is found by event.checked
. The checked item is
found by event.item
. Return false
to prevent the default action which
is to toggle the select state of the series.void setCheckboxClick(SeriesCheckboxClickCallbackFunction value)
event
, is passed to the function. The
state of the checkbox is found by event.checked
. The checked item is
found by event.item
. Return false
to prevent the default action which
is to toggle the select state of the series.@Nullable SeriesClickCallbackFunction getClick()
event
, is
passed to the function, containing common event information.
Additionally, event.point
holds a pointer to the nearest point on the
graph.void setClick(SeriesClickCallbackFunction value)
event
, is
passed to the function, containing common event information.
Additionally, event.point
holds a pointer to the nearest point on the
graph.@Nullable PlotPivotpointsEventsOptions.Hide getHide()
.hide()
.void setHide(PlotPivotpointsEventsOptions.Hide value)
.hide()
.@Nullable PlotPivotpointsEventsOptions.LegendItemClick getLegendItemClick()
event
, is passed to the function. The default
action is to toggle the visibility of the series. This can be prevented
by returning false
or calling event.preventDefault()
.void setLegendItemClick(PlotPivotpointsEventsOptions.LegendItemClick value)
event
, is passed to the function. The default
action is to toggle the visibility of the series. This can be prevented
by returning false
or calling event.preventDefault()
.@Nullable PlotPivotpointsEventsOptions.MouseOut getMouseOut()
event
, is passed to the function, containing common event information.
If the stickyTracking option is true, mouseOut
doesn't happen before
the mouse enters another graph or leaves the plot area.void setMouseOut(PlotPivotpointsEventsOptions.MouseOut value)
event
, is passed to the function, containing common event information.
If the stickyTracking option is true, mouseOut
doesn't happen before
the mouse enters another graph or leaves the plot area.@Nullable PlotPivotpointsEventsOptions.MouseOver getMouseOver()
event
, is passed to the function, containing common event information.void setMouseOver(PlotPivotpointsEventsOptions.MouseOver value)
event
, is passed to the function, containing common event information.@Nullable PlotPivotpointsEventsOptions.Show getShow()
.show()
.void setShow(PlotPivotpointsEventsOptions.Show value)
.show()
.Copyright © 2020. All rights reserved.