Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/mckinsey/vizro into qa/vizr…
Browse files Browse the repository at this point in the history
…o_ai_ui_tests
  • Loading branch information
l0uden committed Jan 23, 2025
2 parents e1c99b0 + 994f2f6 commit eea1c51
Show file tree
Hide file tree
Showing 29 changed files with 402 additions and 499 deletions.
16 changes: 16 additions & 0 deletions vizro-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,22 @@ See the fragment files in the [changelog.d directory](https://github.com/mckinse

<!-- scriv-insert-here -->

<a id='changelog-0.1.31'></a>

# 0.1.31 — 2025-01-23

## Changed

- Bumped library used for `vm.DatePicker` to `dash_mantine_components~=0.15.1`. ([#924](https://github.com/mckinsey/vizro/pull/924))

## Fixed

- Enable arbitrarily deep nesting of custom components within lists, tuples or dictionaries. ([#929](https://github.com/mckinsey/vizro/pull/929))

- Fix hidden axis and tick labels for Graph components using `px.parallel_coordinates`. ([#941](https://github.com/mckinsey/vizro/pull/941))

- Enable visibility of the spinner buttons in number inputs. ([#954](https://github.com/mckinsey/vizro/pull/954))

<a id='changelog-0.1.30'></a>

# 0.1.30 — 2024-12-16
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

16 changes: 10 additions & 6 deletions vizro-core/examples/scratch_dev/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,22 @@
import vizro.models as vm
import vizro.plotly.express as px

stocks = px.data.stocks(datetimes=True)
from vizro.tables import dash_data_table

gapminder = px.data.gapminder()

page = vm.Page(
title="Page",
components=[
vm.Graph(
figure=px.line(stocks, x="date", y="GOOG", title="Stocks Data"),
),
vm.Table(
figure=dash_data_table(data_frame=gapminder),
title="Gapminder Data Insights",
)
],
controls=[
vm.Filter(column="GOOG"),
vm.Filter(column="date", selector=vm.DatePicker(title="Date Picker (Stocks - date)")),
vm.Filter(column="continent", selector=vm.Dropdown(value=["Europe"])),
vm.Filter(column="continent", selector=vm.Dropdown(value="Europe", multi=False)),
vm.Filter(column="continent", selector=vm.Checklist()),
],
)

Expand Down
Loading

0 comments on commit eea1c51

Please sign in to comment.