Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[POC] KPI Infinite scroll AgGrid #519

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Minor changes
petar-qb committed Jun 7, 2024
commit 146adecd5e1437d1a1d5eec37f42ffbf76b4ade8
4 changes: 2 additions & 2 deletions vizro-core/examples/kpi/app.py
Original file line number Diff line number Diff line change
@@ -223,7 +223,7 @@
vm.AgGrid(
figure=infinite_scroll_ag_grid(
id="kpi_grid",
data_frame=pd.DataFrame(),
data_frame=df_complaints,
columnDefs=COLUMN_DEFS,
getRowId="params.data.Complaint ID",
)
@@ -260,4 +260,4 @@ def infinite_scroll(request):


if __name__ == "__main__":
Vizro().build(dashboard).run(debug=False)
Vizro().build(dashboard).run()
2 changes: 1 addition & 1 deletion vizro-core/examples/kpi/utils/_charts.py
Original file line number Diff line number Diff line change
@@ -44,7 +44,7 @@ def build(self):


class AgGridPage(vm.Page):
"""Page without the on_page_load mechanism."""
"""Page without the on page load mechanism."""

def pre_build(self):
pass