Adaptable State Section for the AdapTable Dashboard

TypeScript
export interface DashboardState extends
Extends

BaseState

Properties

PropertyDescriptionDefault
ActiveTabIndexIndex of Active Tab (in Tabs collection)
DashboardTitleTitle displayed in Dashboard HeaderadaptableId in Adaptable Options
FloatingPositionPosition of Dashboard when in Floating mode
IsCollapsedIs Dashboard collapsed; if true, header is visible (but not Tabs' contents)false
IsFloatingIs Dashboard floating; if true, appears in draggable, minmised form (double-click to revert to default position)false
IsHiddenWhether Dashboard is completely hidden - can be made visible again in Column Menu and Tool Panelfalse
IsInlineAlternative way of rendering Dashboard, with headers section to left of Toolbarsfalse
ModuleButtonsButtons which open the Settings Panel screen for associated AdapTable Module['SettingsPanel']
PinnedToolbarsToolbars displayed above Grid (and not in Tab)
TabsNamed 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

IsInline

Alternative way of rendering Dashboard, with headers section to left of Toolbars

TypeScript
IsInline?: 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[]