Modifier and Type | Interface and Description |
---|---|
static interface |
PlotAreaPointEventsOptions.MouseOut |
static interface |
PlotAreaPointEventsOptions.MouseOver |
static interface |
PlotAreaPointEventsOptions.Remove |
static interface |
PlotAreaPointEventsOptions.Select |
static interface |
PlotAreaPointEventsOptions.Unselect |
static interface |
PlotAreaPointEventsOptions.Update |
Modifier and Type | Method and Description |
---|---|
SeriesPointClickCallbackFunction |
getClick()
(Highcharts, Highstock) Fires when a point is clicked.
|
SeriesPointDragCallbackFunction |
getDrag()
(Highcharts, Highstock) Callback that fires while dragging a point.
|
SeriesPointDragStartCallbackFunction |
getDragStart()
(Highcharts, Highstock) Callback that fires when starting to drag a
point.
|
SeriesPointDropCallbackFunction |
getDrop()
(Highcharts, Highstock) Callback that fires when the point is dropped.
|
PlotAreaPointEventsOptions.MouseOut |
getMouseOut()
(Highcharts, Highstock) Fires when the mouse leaves the area close to the
point.
|
PlotAreaPointEventsOptions.MouseOver |
getMouseOver()
(Highcharts, Highstock) Fires when the mouse enters the area close to the
point.
|
PlotAreaPointEventsOptions.Remove |
getRemove()
(Highcharts, Highstock) Fires when the point is removed using the
.remove() method. |
PlotAreaPointEventsOptions.Select |
getSelect()
(Highcharts, Highstock) Fires when the point is selected either
programmatically or following a click on the point.
|
PlotAreaPointEventsOptions.Unselect |
getUnselect()
(Highcharts, Highstock) Fires when the point is unselected either
programmatically or following a click on the point.
|
PlotAreaPointEventsOptions.Update |
getUpdate()
(Highcharts, Highstock) Fires when the point is updated programmatically
through the
.update() method. |
void |
setClick(SeriesPointClickCallbackFunction value)
(Highcharts, Highstock) Fires when a point is clicked.
|
void |
setDrag(SeriesPointDragCallbackFunction value)
(Highcharts, Highstock) Callback that fires while dragging a point.
|
void |
setDragStart(SeriesPointDragStartCallbackFunction value)
(Highcharts, Highstock) Callback that fires when starting to drag a
point.
|
void |
setDrop(SeriesPointDropCallbackFunction value)
(Highcharts, Highstock) Callback that fires when the point is dropped.
|
void |
setMouseOut(PlotAreaPointEventsOptions.MouseOut value)
(Highcharts, Highstock) Fires when the mouse leaves the area close to the
point.
|
void |
setMouseOver(PlotAreaPointEventsOptions.MouseOver value)
(Highcharts, Highstock) Fires when the mouse enters the area close to the
point.
|
void |
setRemove(PlotAreaPointEventsOptions.Remove value)
(Highcharts, Highstock) Fires when the point is removed using the
.remove() method. |
void |
setSelect(PlotAreaPointEventsOptions.Select value)
(Highcharts, Highstock) Fires when the point is selected either
programmatically or following a click on the point.
|
void |
setUnselect(PlotAreaPointEventsOptions.Unselect value)
(Highcharts, Highstock) Fires when the point is unselected either
programmatically or following a click on the point.
|
void |
setUpdate(PlotAreaPointEventsOptions.Update value)
(Highcharts, Highstock) Fires when the point is updated programmatically
through the
.update() method. |
@Nullable SeriesPointClickCallbackFunction getClick()
event
, is passed to the function, containing common event information.
If the series.allowPointSelect
option is true, the default action for
the point's click event is to toggle the point's select state. Returning
false
cancels this action.void setClick(SeriesPointClickCallbackFunction value)
event
, is passed to the function, containing common event information.
If the series.allowPointSelect
option is true, the default action for
the point's click event is to toggle the point's select state. Returning
false
cancels this action.@Nullable SeriesPointDragCallbackFunction getDrag()
e.origin
, and the new point values can be accessed from
e.newPoints
. If there is only a single point being updated, it can be
accessed from e.newPoint
for simplicity, and its ID can be accessed
from e.newPointId
. The this
context is the point being dragged. To
stop the default drag action, return false. See drag and drop options.
Requires the draggable-points
module.void setDrag(SeriesPointDragCallbackFunction value)
e.origin
, and the new point values can be accessed from
e.newPoints
. If there is only a single point being updated, it can be
accessed from e.newPoint
for simplicity, and its ID can be accessed
from e.newPointId
. The this
context is the point being dragged. To
stop the default drag action, return false. See drag and drop options.
Requires the draggable-points
module.@Nullable SeriesPointDragStartCallbackFunction getDragStart()
e.updateProp
is set to the data property being dragged.
The this
context is the point. See drag and drop options.
Requires the draggable-points
module.void setDragStart(SeriesPointDragStartCallbackFunction value)
e.updateProp
is set to the data property being dragged.
The this
context is the point. See drag and drop options.
Requires the draggable-points
module.@Nullable SeriesPointDropCallbackFunction getDrop()
draggable-points
module.void setDrop(SeriesPointDropCallbackFunction value)
draggable-points
module.@Nullable PlotAreaPointEventsOptions.MouseOut getMouseOut()
event
, is passed to the function, containing
common event information.void setMouseOut(PlotAreaPointEventsOptions.MouseOut value)
event
, is passed to the function, containing
common event information.@Nullable PlotAreaPointEventsOptions.MouseOver getMouseOver()
event
, is passed to the function, containing
common event information.void setMouseOver(PlotAreaPointEventsOptions.MouseOver value)
event
, is passed to the function, containing
common event information.@Nullable PlotAreaPointEventsOptions.Remove getRemove()
.remove()
method. One parameter, event
, is passed to the function.
Returning false
cancels the operation.void setRemove(PlotAreaPointEventsOptions.Remove value)
.remove()
method. One parameter, event
, is passed to the function.
Returning false
cancels the operation.@Nullable PlotAreaPointEventsOptions.Select getSelect()
event
, is passed to the function. Returning false
cancels the
operation.void setSelect(PlotAreaPointEventsOptions.Select value)
event
, is passed to the function. Returning false
cancels the
operation.@Nullable PlotAreaPointEventsOptions.Unselect getUnselect()
event
, is passed to the function. Returning false
cancels the
operation.void setUnselect(PlotAreaPointEventsOptions.Unselect value)
event
, is passed to the function. Returning false
cancels the
operation.@Nullable PlotAreaPointEventsOptions.Update getUpdate()
.update()
method. One parameter, event
, is passed to the
function. The new point options can be accessed through event.options
.
Returning false
cancels the operation.void setUpdate(PlotAreaPointEventsOptions.Update value)
.update()
method. One parameter, event
, is passed to the
function. The new point options can be accessed through event.options
.
Returning false
cancels the operation.Copyright © 2020. All rights reserved.