Skip to content

@eodash/eodash / client/types / Template

Interface: Template<T>

Dashboard rendered widgets specification. 3 types of widgets are supported: "iframe", "internal", and "web-component". A specific object should be provided based on the type of the widget.

Type Parameters

T extends ExecutionTime = "compiletime"

Properties

background?

optional background: BackgroundWidget<T>

Widget rendered as the dashboard background. Has the same specifications of Widget without the title and layout properties

Defined in

core/client/types.d.ts:182


gap?

optional gap: number

Gap between widgets

Defined in

core/client/types.d.ts:175


loading?

optional loading: BackgroundWidget<T>

Loading widget

Defined in

core/client/types.d.ts:177


widgets

widgets: Widget<T>[]

Array of widgets that will be rendered as dashboard panels.

Defined in

core/client/types.d.ts:184