DashboardOptions

Options related to the Dashboard in Adaptable.

TypeScript
export interface

Properties

PropertyTypeDescriptionDefault
buttonsLocationDashboardButtonsLocationWhere in Dashboard to display Module and Custom Buttons'right'
canFloatbooleanWhether the Dashboard can be floated; if true (the default), double-clicking Dashboard puts it in float modetrue
customDashboardButtonsAdaptableButton<DashboardButtonContext>[]Custom Adaptable Buttons to appear in Dashboard
customToolbarsCustomToolbar[]Toolbars provided by Users which contain custom content
showQuickSearchInHeaderbooleanShows Quick Search input in 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

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 input in Dashboard Header

TypeScript
showQuickSearchInHeader?: boolean;
Default Value

true

Property Value

boolean