Options related to the Dashboard in Adaptable.

TypeScript
export interface

Properties

PropertyDescriptionDefault
buttonsLocationWhere in Dashboard to display Module and Custom Buttons'right'
canFloatWhether the Dashboard can be floated; if true (the default), double-clicking Dashboard puts it in float modetrue
customDashboardButtonsCustom Adaptable Buttons to appear in Dashboard (alongside Module Buttons)
customToolbarsToolbars provided by Users which contain custom content
showQuickSearchInHeaderShows Quick Search textbox in the Dashboard Headertrue

Property Details

buttonsLocation

Where in Dashboard to display Module and Custom Buttons

TypeScript
buttonsLocation?: DashboardButtonsLocation;
Default Value

'right'

Property Value

DashboardButtonsLocation

canFloat

Whether the Dashboard can be floated; if true (the default), double-clicking Dashboard puts it in float mode

TypeScript
canFloat?: boolean;
Default Value

true

Property Value

boolean

customDashboardButtons

Custom Adaptable Buttons to appear in Dashboard (alongside Module Buttons)

TypeScript
customDashboardButtons?: AdaptableButton<DashboardButtonContext>[];
Property Value

AdaptableButton<DashboardButtonContext>[]

customToolbars

Toolbars provided by Users which contain custom content

TypeScript
customToolbars?: CustomToolbar[];
Property Value

CustomToolbar[]

showQuickSearchInHeader

Shows Quick Search textbox in the Dashboard Header

TypeScript
showQuickSearchInHeader?: boolean;
Default Value

true

Property Value

boolean