An open API service indexing awesome lists of open source software.

https://github.com/snehilvj/dash-mantine-react-table

The right datagrid for Dash when using Dash Mantine Components based on https://www.mantine-react-table.com.
https://github.com/snehilvj/dash-mantine-react-table

dash dash-mantine-components dmc plotly plotly-dash

Last synced: 4 months ago
JSON representation

The right datagrid for Dash when using Dash Mantine Components based on https://www.mantine-react-table.com.

Awesome Lists containing this project

README

          

# Dash Mantine React Table

The right datagrid for Dash when using [Dash Mantine Components](http://dash-mantine-components.com).

## Install

```shell
pip install dash_mantine_react_table
```

## Quickstart

```python
from dash_mantine_react_table import DashMantineReactTable

grid = DashMantineReactTable(
data=data.to_dict("records"),
columns=[{"accessorKey": i, "header": i} for i in data.columns],
mrtProps={
"enableHiding": False,
"enableColumnFilters": False,
"initialState": {"density": "sm"},
"mantineTableProps": {"fontSize": "sm"},
"mantineTableHeadCellProps": {"style": {"fontWeight": 500}},
},
mantineProviderProps={
"theme": {
"colorScheme": "dark",
},
},
)
```