Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

Optional enableHover

enableHover: boolean

When true, hover is enabled. Any series under the mouse or pointer on mouseMove will be notified as mouseOver.

remarks

Enabling hover will decrease performance as a hit-test operation must be performed every mouse-move.

Default false

Optional enableSelection

enableSelection: boolean

When true, Selection is enabled. Any series under the mouse or pointer device on mouseDown can be selected.

Default true

Optional excludedSeriesIds

excludedSeriesIds: string[]

A list of 3D renderable series to exclude from this modifier

remarks

Also see ChartModifierBase3D.includedSeries which has methods to include or exclude a series by instance

Optional executeCondition

executeCondition: TModifierExecuteCondition

The primary action execute condition that modifier should respond to

Optional hitTestRadius

hitTestRadius: number

Pixel radius used for hover and selection hit-testing around the mouse point. A value of 0 means exact pixel only.

Default 2

Optional id

id: string

A unique Id for the ChartModifierBase3D

Optional includedSeriesIds

includedSeriesIds: string[]

A list of 3D renderable series to include to this modifier

remarks

Also see ChartModifierBase3D.includedSeries which has methods to include or exclude a series by instance

Optional onHoverChanged

onHoverChanged: THoveredChangedCallback3D | string

Optional callback for when any series is hovered or unhovered

Optional onSelectionChanged

onSelectionChanged: TSelectionChangedCallback3D | string

Optional callback for when any series is selected or deselected

Optional prioritizeClosestToCamera

prioritizeClosestToCamera: boolean

When true, if multiple series are hit at a pixel, the one with hit-point closest to camera is preferred. Default false

note

Use together with a larger hitTestRadius to improve hover behavior for thin 3D lines (a value of 10 instead of the default 2).

Generated using TypeDoc