Skip to content

Commit

Permalink
PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
huong-li-nguyen committed Mar 5, 2025
1 parent ece2408 commit 4e7034d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Uncomment the section that is right (remove the HTML comment wrapper).

### Changed

- Turn `AgGrid` and `DataTable` background transparent. ([#1047](https://github.com/mckinsey/vizro/pull/1047))
- Turn `AgGrid` background transparent. ([#1047](https://github.com/mckinsey/vizro/pull/1047))


<!--
Expand Down
3 changes: 3 additions & 0 deletions vizro-core/examples/scratch_dev/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
page = vm.Page(
title="AgGrid",
components=[
vm.AgGrid(figure=dash_ag_grid(iris)),
vm.Container(
title="Container II",
components=[vm.AgGrid(figure=dash_ag_grid(iris))],
Expand All @@ -21,6 +22,7 @@
page_two = vm.Page(
title="Data Table",
components=[
vm.Table(figure=dash_data_table(iris)),
vm.Container(
title="Container II",
components=[vm.Table(figure=dash_data_table(iris))],
Expand All @@ -32,6 +34,7 @@
page_three = vm.Page(
title="Graph",
components=[
vm.Graph(figure=px.scatter(iris, x="sepal_width", y="sepal_length", color="species")),
vm.Container(
title="Container II",
components=[vm.Graph(figure=px.scatter(iris, x="sepal_width", y="sepal_length", color="species"))],
Expand Down

0 comments on commit 4e7034d

Please sign in to comment.