Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 524 Bytes

datatable.rst

File metadata and controls

19 lines (12 loc) · 524 Bytes

Datables

image

A widget showing tabular data.

from chartflo.widgets.datatable import DataTable

dt = DataTable()
# from a dataframe
dt.create("datatable_slug", "dashboard_slug", df=df, search=False)
# or from a query
dt.create("datatable_slug", "dashboard_slug", query=some_django_query)

This will save a dashboards/dashboard_slug/datatables/datatable_slug.html file to include in a dashboard view.