class PlotOptionsTreemapPointEvents extends Object
- Annotations
- @RawJSType() @ScalaJSDefined()
- Note
JavaScript name:
plotOptions-treemap-point-events
- Alphabetic
- By Inheritance
- PlotOptionsTreemapPointEvents
- Object
- Any
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new PlotOptionsTreemapPointEvents()
Value Members
-
val
click: UndefOr[Function]
Fires when a point is clicked.
Fires when a point is clicked. One parameter,
event
, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.If the
series.allowPointSelect
option is true, the default action for the point's click event is to toggle the point's select state. Returningfalse
cancels this action.Example: -
def
hasOwnProperty(v: String): Boolean
- Definition Classes
- Object
-
def
isPrototypeOf(v: Object): Boolean
- Definition Classes
- Object
-
val
mouseOut: UndefOr[Function]
Fires when the mouse leaves the area close to the point.
Fires when the mouse leaves the area close to the point. One parameter,
event
, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. -
val
mouseOver: UndefOr[Function]
Fires when the mouse enters the area close to the point.
Fires when the mouse enters the area close to the point. One parameter,
event
, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. -
def
propertyIsEnumerable(v: String): Boolean
- Definition Classes
- Object
-
val
remove: UndefOr[Function]
Fires when the point is removed using the
.remove()
method.Fires when the point is removed using the
.remove()
method. One parameter,event
, is passed to the function. Returningfalse
cancels the operation.- Since
1.2.0
Example: -
val
select: UndefOr[Function]
Fires when the point is selected either programmatically or following a click on the point.
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.- Since
1.2.0
Example: -
def
toLocaleString(): String
- Definition Classes
- Object
-
val
unselect: UndefOr[Function]
Fires when the point is unselected either programmatically or following a click on the point.
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.- Since
1.2.0
Example: -
val
update: UndefOr[Function]
Fires when the point is updated programmatically through the
.update()
method.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.- Since
1.2.0
Example: -
def
valueOf(): Any
- Definition Classes
- Object