Skip to content

Commit

Permalink
fix arguments syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mattijn committed Nov 4, 2023
1 parent 42e0bd5 commit 98e94bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/examples_arguments_syntax/bar_chart_with_range.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
source = data.seattle_weather()

bar = alt.Chart(source).mark_bar(cornerRadius=10, height=10).encode(
x=alt.X('min(temp_min):Q', scale=alt.Scale(domain=[-15, 45], title='temperature (°C)')),
x=alt.X('min(temp_min):Q', scale=alt.Scale(domain=[-15, 45]), title='temperature (°C)'),
x2='max(temp_max):Q',
y=alt.Y('month(date):O', title=None)
)
Expand Down

0 comments on commit 98e94bd

Please sign in to comment.