Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface DashboardOptions

Interface specifies the amount of rows and columns a Dashboard should have.

Example usage:

// Dashboard with 2 columns and 3 rows
{numberOfColumns: 2, numberOfRows: 3}

Index

Properties

Optional Readonly disableAnimations

disableAnimations : undefined | false | true

Disable animations by default

Readonly numberOfColumns

numberOfColumns : number

Number of columns the dashboard should allocate - horizontal amount of cells.

Readonly numberOfRows

numberOfRows : number

Number of rows the dashboard should allocate - vertical amount of cells.

Optional Readonly theme

theme : Theme

Theme to use for styling the dashboard and all Panels and Charts inside it. Charts can override this theme individually if they're given their own theme.