Modifier and Type | Interface and Description |
---|---|
static interface |
PlotBubbleEventsOptions.Hide |
static interface |
PlotBubbleEventsOptions.LegendItemClick |
static interface |
PlotBubbleEventsOptions.MouseOut |
static interface |
PlotBubbleEventsOptions.MouseOver |
static interface |
PlotBubbleEventsOptions.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()
(Highcharts, Highstock) Fires when the checkbox next to the series' name
in the legend is clicked.
|
SeriesClickCallbackFunction |
getClick()
(Highcharts, Highstock) Fires when the series is clicked.
|
PlotBubbleEventsOptions.Hide |
getHide()
(Highcharts, Highstock) Fires when the series is hidden after chart
generation time, either by clicking the legend item or by calling
.hide() . |
PlotBubbleEventsOptions.LegendItemClick |
getLegendItemClick()
(Highcharts, Highstock) Fires when the legend item belonging to the
series is clicked.
|
PlotBubbleEventsOptions.MouseOut |
getMouseOut()
(Highcharts, Highstock) Fires when the mouse leaves the graph.
|
PlotBubbleEventsOptions.MouseOver |
getMouseOver()
(Highcharts, Highstock) Fires when the mouse enters the graph.
|
PlotBubbleEventsOptions.Show |
getShow()
(Highcharts, 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)
(Highcharts, Highstock) Fires when the checkbox next to the series' name
in the legend is clicked.
|
void |
setClick(SeriesClickCallbackFunction value)
(Highcharts, Highstock) Fires when the series is clicked.
|
void |
setHide(PlotBubbleEventsOptions.Hide value)
(Highcharts, Highstock) Fires when the series is hidden after chart
generation time, either by clicking the legend item or by calling
.hide() . |
void |
setLegendItemClick(PlotBubbleEventsOptions.LegendItemClick value)
(Highcharts, Highstock) Fires when the legend item belonging to the
series is clicked.
|
void |
setMouseOut(PlotBubbleEventsOptions.MouseOut value)
(Highcharts, Highstock) Fires when the mouse leaves the graph.
|
void |
setMouseOver(PlotBubbleEventsOptions.MouseOver value)
(Highcharts, Highstock) Fires when the mouse enters the graph.
|
void |
setShow(PlotBubbleEventsOptions.Show value)
(Highcharts, 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 PlotBubbleEventsOptions.Hide getHide()
.hide()
.void setHide(PlotBubbleEventsOptions.Hide value)
.hide()
.@Nullable PlotBubbleEventsOptions.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(PlotBubbleEventsOptions.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 PlotBubbleEventsOptions.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(PlotBubbleEventsOptions.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 PlotBubbleEventsOptions.MouseOver getMouseOver()
event
, is passed to the function, containing common event
information.void setMouseOver(PlotBubbleEventsOptions.MouseOver value)
event
, is passed to the function, containing common event
information.@Nullable PlotBubbleEventsOptions.Show getShow()
.show()
.void setShow(PlotBubbleEventsOptions.Show value)
.show()
.Copyright © 2020. All rights reserved.