Abstract Readonly scaleSubscribe to onDispose event.
This event is triggered whenever the object is disposed.
A component can only be disposed by the end user, by calling the dispose method on the component or the component which owns it.
// Example usage
Dashboard.onDispose(() => {
console.log('Dashboard was disposed')
})
Dashboard.dispose()
Token of subscription
Handler function for event
Set auto-fit strategy of Cursor. Affects logic of automatic fitting of Cursors ResultTable to the screen.
Object itself for fluent interface
Optional autoFitStrategy: AutoFitStrategyFactory<ResultTableBackgroundType>AutoFitStrategy factory or undefined to disable auto-fitting
Mutator function for Cursors PointMarker. PointMarker is a visual that is displayed at the Cursors position
Object itself for fluent interface
Mutator function for PointMarker
Set point marker visible or not.
Object itself.
Point marker visible?
Abstract setSet cursor position.
Object itself.
Rest ...cursorPositions: CursorPositionType[]Abstract interface that describes cursor position. Actual type depends on type of cursor (XY, 3D, Polar, etc...)
Mutator function for Cursors ResultTable. ResultTable is a visual that displays currently pointed data next to its location
Object itself for fluent interface
Mutator function for ResultTable
Set result table visible or not.
Object itself.
Result table visible?
Set element visibility.
Object itself.
true when element should be visible and false when element should be hidden.
Permanently destroy the component.
To fully allow Garbage-Collection to free the resources used by the component, make sure to remove any references to the component and its children in application code.
Returns
Object itself for fluent interface