DashboardState

Adaptable State Section for the AdapTable Dashboard

TypeScript
export interface DashboardState extends
Extends

BaseState

Properties

PropertyTypeDescriptionDefault
ActiveTabIndexnumberIndex of Active Tab (in Tabs collection)
DashboardTitlestringTitle displayed in Dashboard HeaderadaptableId in Adaptable Options
FloatingPositionAdaptableCoordinatePosition of Dashboard when in Floating mode
IsCollapsedbooleanIs Dashboard collapsed; if true, header is visible (but not Tabs' contents)false
IsFloatingbooleanIs Dashboard floating; if true, appears in draggable, minmised form (double-click to revert to default position)false
IsHiddenbooleanWhether Dashboard is completely hidden - can be made visible again in Column Menu and Tool Panelfalse
ModuleButtonsAdaptableModuleButtonsButtons which open the Settings Panel screen for associated AdapTable Module['SettingsPanel']
PinnedToolbarsAdaptableDashboardToolbars | string[]Toolbars displayed above Grid (and not in Tab)
TabsDashboardTab[]Named group of ToolbarsEmpty Array

Property Details

ActiveTabIndex

Index of Active Tab (in Tabs collection)

TypeScript
ActiveTabIndex?: number;
Property Value

number

DashboardTitle

Title displayed in Dashboard Header

TypeScript
DashboardTitle?: string;
Default Value

adaptableId in Adaptable Options

Property Value

string

FloatingPosition

Position of Dashboard when in Floating mode

TypeScript
FloatingPosition?: AdaptableCoordinate;
Property Value

AdaptableCoordinate

IsCollapsed

Is Dashboard collapsed; if true, header is visible (but not Tabs' contents)

TypeScript
IsCollapsed?: boolean;
Default Value

false

Property Value

boolean

IsFloating

Is Dashboard floating; if true, appears in draggable, minmised form (double-click to revert to default position)

TypeScript
IsFloating?: boolean;
Default Value

false

Property Value

boolean

IsHidden

Whether Dashboard is completely hidden - can be made visible again in Column Menu and Tool Panel

TypeScript
IsHidden?: boolean;
Default Value

false

Property Value

boolean

ModuleButtons

Buttons which open the Settings Panel screen for associated AdapTable Module

TypeScript
ModuleButtons?: AdaptableModuleButtons;
Default Value

['SettingsPanel']

Property Value

AdaptableModuleButtons

PinnedToolbars

Toolbars displayed above Grid (and not in Tab)

TypeScript
PinnedToolbars?: AdaptableDashboardToolbars | string[];
Property Value

AdaptableDashboardToolbars | string[]

Tabs

Named group of Toolbars

TypeScript
Tabs?: DashboardTab[];
Default Value

Empty Array

Property Value

DashboardTab[]