Table functions
vizro.tables
Built-in table functions.
Usage documentation
dash_ag_grid
dash_ag_grid(
data_frame: DataFrame, **kwargs: Any
) -> AgGrid
Implementation of dash_ag_grid.AgGrid with sensible defaults to be used in AgGrid.
Usage documentation
| PARAMETER | DESCRIPTION |
|---|---|
data_frame
|
DataFrame containing the data to be displayed.
TYPE:
|
| PARAMETER | DESCRIPTION |
|---|---|
**kwargs |
Additional keyword arguments to be passed to the
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
AgGrid
|
A |
Example
Source code in src/vizro/tables/_dash_ag_grid.py
dash_data_table
dash_data_table(
data_frame: DataFrame, **kwargs: Any
) -> DataTable
Standard dash.dash_table.DataTable with sensible defaults to be used in Table.
Usage documentation
| PARAMETER | DESCRIPTION |
|---|---|
data_frame
|
DataFrame containing the data to be displayed.
TYPE:
|
| PARAMETER | DESCRIPTION |
|---|---|
**kwargs |
Additional keyword arguments to be passed to the
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
DataTable
|
A |