Grid#
Grid #
Grid(*items: Union[LayoutItem, Row, FluidRow])
Organize dashboard content with vertical grid structure.
The Grid class is component in a dashboard layout, allowing users to organize content using a vertical grid structure. It provides a way to arrange widgets, rows, and selectable sections.
Constructor for Grid.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
items |
Union[LayoutItem, Row, FluidRow]
|
items to add to grid. Can be widgets, rows or selectable sections (e.g tabs). |
()
|
Examples:#
Create Grid with widget
Create Grid with multiple widgets
Create Grid with Tab Section and Card
Row #
Row(
*items: Union[LayoutItem, Column],
height: Optional[Union[int, float]] = None
)
Organize and group content horizontally within a vertical grid layout.
The Row class represents a row within a vertical grid layout, allowing users to organize and group content horizontally.
Constructor for Row.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
*items |
Union[LayoutItem, Column]
|
Content that is going to be added inside the Row, if the item is a Column, it will be added to the row, if the item is a Widget or a Grid, it will be added to a Column. |
()
|
height |
Optional[Union[int, float]]
|
Custom height for the row. |
None
|
Examples:#
Create Row with widget
Create Row with multiple widgets
Create Row with Tab Section and Card
Column #
Column(*, content: LayoutItem, width: Optional[int] = None)
Organize and group content vertically within a vertical grid layout.
The Column class represents a column within a vertical grid layout, providing a way to organize and group content vertically.
Constructor for Column.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
content |
LayoutItem
|
Representing the base class for items in a dashboard layout. It's a common type that other layout-related classes inherit from. |
required |
width |
Optional[int]
|
Sets the column width, value between 3 and 12. If value is None the width will be set automatically based on the number of columns in the row. |
None
|
Examples:#
Create Column with widget
Columns with default Width
Columns with custom Width
FluidRow #
FluidRow(
*items: Widget,
vertical_alignment: VerticalAlignment = VerticalAlignment.TOP,
horizontal_alignment: FluidHorizontalAlignment = HorizontalAlignment.CENTER
)
Enables flexible and responsive content alignment in a vertical grid layout.
The FluidRow class represents a fluid row within a vertical grid layout, allowing for flexible and responsive content alignment.
Constructor for FluidRow.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
items |
Widget
|
item within the FluidRow must be compatible. |
()
|
vertical_alignment |
VerticalAlignment
|
Fluid Row vertical alignment option.
|
TOP
|
horizontal_alignment |
FluidHorizontalAlignment
|
Fluid Row horizontal alignment option.
|
CENTER
|
Examples:#
Create Fluid Row with widget
Create FluidRow with multiple Widgets
Create FluidRow with left alignment
LayoutItem
module-attribute
#
Base class for items in dashboard layout; inherited by other layout-related classes.
The LayoutItem class is a module attribute, representing the base class for items in a dashboard layout. It's a common type that other layout-related classes inherit from.