Skip to content

Commit

Permalink
improve option name + help msg
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasrodes committed Nov 26, 2024
1 parent 8b21df3 commit 5b3985f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/wizard/app_pages/chart_animation.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,9 @@ def add_icons_to_tabs(tab_name):
# If chart, show option to just show single year
if tab == "chart":
year_range_open = not st.toggle(
"Show only current year",
"Show single year",
value=not query_parameters["year_range_open"],
help="Only relevant for the chart view. If checked, the animated chart will display a sequence of bar charts with current year.",
help="Only relevant for the chart view. If checked, the animated chart will only display a single year per frame. For LineCharts, this means a sequence of bar charts. For ScatterCharts, this means a sequence of bubbles (and not vectors).",
)
else:
year_range_open = True
Expand Down

0 comments on commit 5b3985f

Please sign in to comment.