Back to Devexpress

DashboardTitleToolbarOptions Interface

dashboard-js-devexpress-dot-dashboard-79f96f41.md

latest2.9 KB
Original Source

DashboardTitleToolbarOptions Interface

Provides access to the dashboard title’s elements.

Declaration

ts
export interface DashboardTitleToolbarOptions

Remarks

The dashboard title can contain the following elements:

  • A content item is a control element displayed on the left or in the center depending on the title alignment.
  • An action item is a control element displayed on the right (for instance, the Export To and Parameters buttons).
  • A navigation item is a control element that allows you to navigate between different screens (for example, the Back button in the mobile layout).

A toolbar item is the ViewerToolbarItem object.

Refer to the Array documentation for information on how to manage the collection of toolbar items.

Properties

actionItems Property

Specifies a collection of the dashboard title’s action items.

Declaration

ts
actionItems: Array<ViewerToolbarItem>

Property Value

TypeDescription
ViewerToolbarItem[]

A collection of toolbar items.

|

Remarks

An action item is a control element displayed on the right (for instance, the Export To and Parameters buttons).

contentItems Property

Specifies a collection of the dashboard title’s content items.

Declaration

ts
contentItems: Array<ViewerToolbarItem>

Property Value

TypeDescription
ViewerToolbarItem[]

A collection of toolbar items.

|

Remarks

A content item is a control element displayed on the left or in the center depending on the title alignment.

Specifies a collection of the dashboard title’s navigation items.

Declaration

ts
navigationItems: Array<ViewerToolbarItem>

Property Value

TypeDescription
ViewerToolbarItem[]

A collection of toolbar items.

|

Remarks

A navigation item is a control element that allows you to navigate between different screens (for example, the Back button in the mobile layout).