Skip to main content
A newer version of this page is available. .

InteractivityPanelExtension Class

An extension that is the dashboard item’s Interactivity menu containing settings that affect on interaction between various dashboard items.

Declaration

export class InteractivityPanelExtension implements IExtension

Remarks

When registered, the InteractivityPanelExtension adds the Interactivity panel to the dashboard item’s menu.

To disable the current panel, call the unregisterExtension(extensionNames) method and pass the extension’s unique name as a parameter:

dashboardControl.unregisterExtension('itemInteractivityPanel');

Implements

constructor(dashboardControl)

Initializes a new instance of the InteractivityPanelExtension class.

Declaration

constructor(
    dashboardControl: DashboardControl
)

Parameters

Name Type Description
dashboardControl DashboardControl

A Web Dashboard control that owns the extension.

Properties

name Property

Specifies the unique extension name.

Declaration

name: string

Property Value

Type Description
string

The unique extension name. The return value is itemInteractivityPanel.

Remarks

Use the itemInteractivityPanel name in your applications so you can change the extension options when calling the control’s option method. Before v20.2 the extension name was item-interactivity-panel. You can use the old name only in the DashboardControl.findExtension method.

Warning

Do not change the unique name of the extension registered in the Web Dashboard to avoid exceptions.

Methods

start Method

Contains code that is executed when you register the dashboard extension.

Declaration

start(): void

stop Method

Contains code that is executed when you unregister the dashboard extension.

Declaration

stop(): void