HighchartsPyramidSeriesPointEventsOptions class
Highcharts Options Widget.
- Inheritance
-
- Object
- HighchartsOptionsBase
- HighchartsPyramidSeriesPointEventsOptions
Constructors
- HighchartsPyramidSeriesPointEventsOptions.new({dynamic legendItemClick, dynamic click, dynamic drag, dynamic dragStart, dynamic drop, dynamic mouseOut, dynamic mouseOver, dynamic remove, dynamic select, dynamic unselect, dynamic update})
- Highcharts Options Widget.
Properties
- click ↔ dynamic
-
Fires when a point is clicked. One parameter,
event
, is passed to the function, containing common event information.getter/setter pair - drag ↔ dynamic
-
Callback that fires while dragging a point. The mouse event is passed in
as parameter. The original data can be accessed from
e.origin
, and the new point values can be accessed frome.newPoints
. If there is only a single point being updated, it can be accessed frome.newPoint
for simplicity, and its ID can be accessed frome.newPointId
. Thethis
context is the point being dragged. To stop the default drag action, return false. See drag and drop options.getter/setter pair - dragStart ↔ dynamic
-
Callback that fires when starting to drag a point. The mouse event object
is passed in as an argument. If a drag handle is used,
e.updateProp
is set to the data property being dragged. Thethis
context is the point. See drag and drop options.getter/setter pair - drop ↔ dynamic
-
Callback that fires when the point is dropped. The parameters passed are
the same as for drag. To stop
the default drop action, return false. See
drag and drop options.
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
- legendItemClick ↔ dynamic
-
Fires when the legend item belonging to the pie point (slice) is
clicked. The
this
keyword refers to the point itself. One parameter,event
, is passed to the function, containing common event information. The default action is to toggle the visibility of the point. This can be prevented by callingevent.preventDefault()
.getter/setter pair - mouseOut ↔ dynamic
-
Fires when the mouse leaves the area close to the point. One
parameter,
event
, is passed to the function, containing common event information.getter/setter pair - mouseOver ↔ dynamic
-
Fires when the mouse enters the area close to the point. One
parameter,
event
, is passed to the function, containing common event information.getter/setter pair - remove ↔ dynamic
-
Fires when the point is removed using the
.remove()
method. One parameter,event
, is passed to the function. Returningfalse
cancels the operation.getter/setter pair - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- select ↔ dynamic
-
Fires when the point is selected either programmatically or
following a click on the point. One parameter,
event
, is passed to the function. Returningfalse
cancels the operation.getter/setter pair - unselect ↔ dynamic
-
Fires when the point is unselected either programmatically or
following a click on the point. One parameter,
event
, is passed to the function. Returningfalse
cancels the operation.getter/setter pair - update ↔ dynamic
-
Fires when the point is updated programmatically through the
.update()
method. One parameter,event
, is passed to the function. The new point options can be accessed throughevent.options
. Returningfalse
cancels the operation.getter/setter pair
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJSON(
) → String -
Serializes the settings to a JSON string.
inherited
-
toOptionsJSON(
StringBuffer buffer) → void -
override
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited