Card#
Card #
Card(
*,
content: Union[LayoutItem, List[LayoutItem]],
header: Optional[
Union[TemplatedStringItem, CardHeader]
] = None
)
Groups content with widgets, grids, and selectable sections.
The Card class is a fundamental component in a dashboard layout, allowing users to group and organize content. It provides a container for various layout items such as widgets, cards, grids, and selectable sections.
Constructor for Card.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
content |
Union[LayoutItem, List[LayoutItem]]
|
content within the Card. One of Widget, Card, Grid, SelectableSection. |
required |
header |
Optional[Union[TemplatedStringItem, CardHeader]]
|
Header card spec. Defaults to None, i.e. a card without title. |
None
|
Examples:#
Create a Card layout and add a widget
Create a Card layout with multiple Widgets
CardHeader #
CardHeader(
*chips: CardChip,
title: Optional[TemplatedStringItem] = None
)
Provides card title and chips for additional information.
The CardHeader class represents the header of a card, providing additional information such as title and chips.
Constructor for CardHeader.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
chips |
CardChip
|
chips to be added to the card header. |
()
|
title |
Optional[TemplatedStringItem]
|
Card title. |
None
|
Examples:#
Create a Card layout with a title
CardChip #
CardChip(
*,
label: Union[str, GenericLink],
tooltip_text: Optional[
List[TemplatedStringItem]
] = None,
prefix: str = "",
suffix: str = ""
)
Labels or links within a card header for additional context.
The CardChip class represents individual chips within a card header, providing additional labels or links.
Constructor for CardChip.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
label |
Union[str, GenericLink]
|
Card Header label value. Can assume a static label or a single GenericLink. |
required |
tooltip_text |
Optional[List[TemplatedStringItem]]
|
informational pop up text. Each element of list is displayed
as a separate paragraph. Can only use this option if the |
None
|
prefix |
str
|
prefix value to use in before each label. |
''
|
suffix |
str
|
suffix value to use in after each label. |
''
|