HighchartsCylinderSeriesDataEventsOptions class

Inheritance

Constructors

HighchartsCylinderSeriesDataEventsOptions.new({dynamic click, dynamic drag, dynamic dragStart, dynamic drop, dynamic mouseOut, dynamic mouseOver, dynamic remove, dynamic select, dynamic unselect, dynamic update})
The individual point events.

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 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.
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. The this 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
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. Returning false 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. Returning false 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. Returning false 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 through event.options. Returning false 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