Winter Cardinal UI - v0.442.0 / DChartSelectionSubImpl
Name | Type |
---|---|
CHART |
extends DBase = DBase |
EventEmitter
↳ DChartSelectionSubImpl
DChartSelectionSub
<CHART
>• new DChartSelectionSubImpl<CHART
>(options
): DChartSelectionSubImpl
<CHART
>
Name | Type |
---|---|
CHART |
extends DBase <DThemeBase , DBaseOptions <DThemeBase , any >> = DBase <DThemeBase , DBaseOptions <DThemeBase , any >> |
Name | Type |
---|---|
options |
DChartSelectionSubOptions <CHART , any > |
DChartSelectionSubImpl
<CHART
>
utils.EventEmitter.constructor
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:39
• Protected
_container: null
| DChartSeriesContainer
<CHART
>
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:26
• Protected
_coordinateX: null
| DChartCoordinate
<CHART
>
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:30
• Protected
_coordinateY: null
| DChartCoordinate
<CHART
>
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:31
• Protected
_gridline: DChartSelectionContainer
<CHART
>
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:35
• Protected
_isEnabled: boolean
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:27
• Protected
_isVisible: boolean
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:28
• Protected
_marker: DChartSelectionMarker
<CHART
>
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:36
• Protected
_point: DChartSelectionPoint
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:33
• Protected
_position: Point
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:32
• Protected
_series: null
| DChartSeries
<CHART
>
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:29
• Protected
_state: string
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:37
• Protected
_work: Point
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:34
• get
gridline(): DChartSelectionContainer
<CHART
>
DChartSelectionContainer
<CHART
>
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:106
• get
marker(): DChartSelectionMarker
<CHART
>
DChartSelectionMarker
<CHART
>
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:110
• get
position(): Point
Point
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:102
• get
series(): null
| DChartSeries
<CHART
>
null
| DChartSeries
<CHART
>
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:98
• get
visible(): boolean
boolean
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:94
▸ addListener(event
, fn
, context?
): this
Alias method for on
Name | Type |
---|---|
event |
string | symbol |
fn |
Function |
context? |
any |
this
DChartSelectionSub.addListener
utils.EventEmitter.addListener
node_modules/pixi.js/pixi.js.d.ts:25495
▸ bind(container
): void
Name | Type |
---|---|
container |
DChartSeriesContainer <CHART > |
void
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:78
▸ emit(event
, ...args
): boolean
Calls each of the listeners registered for a given event.
Name | Type | Description |
---|---|---|
event |
string | symbol |
The event name. |
...args |
any [] |
Arguments that are passed to registered listeners |
boolean
true
if the event had listeners, else false
.
utils.EventEmitter.emit
node_modules/pixi.js/pixi.js.d.ts:25441
▸ eventNames(): (string
| symbol
)[]
Return an array listing the events for which the emitter has registered listeners.
(string
| symbol
)[]
utils.EventEmitter.eventNames
node_modules/pixi.js/pixi.js.d.ts:25415
▸ listenerCount(event
): number
Return the number of listeners listening to a given event.
Name | Type | Description |
---|---|---|
event |
string | symbol |
The event name. |
number
DChartSelectionSub.listenerCount
utils.EventEmitter.listenerCount
node_modules/pixi.js/pixi.js.d.ts:25432
▸ listeners(event
): Function
[]
Return the listeners registered for a given event.
Name | Type | Description |
---|---|---|
event |
string | symbol |
The event name. |
Function
[]
utils.EventEmitter.listeners
node_modules/pixi.js/pixi.js.d.ts:25424
▸ off(event
, fn?
, context?
, once?
): this
Alias method for removeListener
Name | Type |
---|---|
event |
string | symbol |
fn? |
Function |
context? |
any |
once? |
boolean |
this
utils.EventEmitter.off
node_modules/pixi.js/pixi.js.d.ts:25489
▸ on(event
, fn
, context?
): this
Add a listener for a given event.
Name | Type | Description |
---|---|---|
event |
string | symbol |
The event name. |
fn |
Function |
The listener function. |
context? |
any |
The context to invoke the listener with. |
this
this
.
utils.EventEmitter.on
node_modules/pixi.js/pixi.js.d.ts:25452
▸ once(event
, fn
, context?
): this
Add a one-time listener for a given event.
Name | Type | Description |
---|---|---|
event |
string | symbol |
The event name. |
fn |
Function |
The listener function. |
context? |
any |
The context to invoke the listener with. |
this
this
.
utils.EventEmitter.once
node_modules/pixi.js/pixi.js.d.ts:25463
▸ removeAllListeners(event?
): this
Remove all listeners, or those of the specified event.
Name | Type | Description |
---|---|---|
event? |
string | symbol |
The event name. |
this
this
.
DChartSelectionSub.removeAllListeners
utils.EventEmitter.removeAllListeners
node_modules/pixi.js/pixi.js.d.ts:25483
▸ removeListener(event
, fn?
, context?
, once?
): this
Remove the listeners of a given event.
Name | Type | Description |
---|---|---|
event |
string | symbol |
The event name. |
fn? |
Function |
Only remove the listeners that match this function. |
context? |
any |
Only remove the listeners that have this context. |
once? |
boolean |
Only remove one-time listeners. |
this
this
.
DChartSelectionSub.removeListener
utils.EventEmitter.removeListener
node_modules/pixi.js/pixi.js.d.ts:25475
▸ set(x
, y
): void
Sets a series to null and set a position to the given global position.
Name | Type | Description |
---|---|---|
x |
number |
a global X position |
y |
number |
a global Y position |
void
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:114
▸ set(series
, result
): void
Sets a series and a position.
Name | Type | Description |
---|---|---|
series |
DChartSeries <CHART > |
a series to be set |
result |
DChartSeriesHitResult |
a hit result |
void
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:115
▸ set1(x
, y
): void
Name | Type |
---|---|
x |
number |
y |
number |
void
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:124
▸ set2(series
, result
): void
Name | Type |
---|---|
series |
DChartSeries <CHART > |
result |
DChartSeriesHitResult |
void
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:179
▸ unbind(): void
void
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:86
▸ unset(): void
Clear a series and a position.
void
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:252
▸ update(): boolean
boolean
src/main/typescript/wcardinal/ui/d-chart-selection-sub-impl.ts:278