Skip to content

Commit

Permalink
aligned code style of chart to make it better readable
Browse files Browse the repository at this point in the history
  • Loading branch information
thomend committed Jun 18, 2023
1 parent 3f45b04 commit ef7fb2e
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions tests/examples_methods_syntax/wheat_wages.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,9 @@
**{"yOffset": 14, "fontSize": 9, "fontStyle": "italic"}
).encode(alt.X("x:Q"), alt.Y("off2:Q"), alt.Text("name:N"))

(bars + section_line + area + area_line_1 + area_line_2 + top_bars + top_text).properties(
width=900, height=400
).configure_axis(
title=None, gridColor="white", gridOpacity=0.25, domain=False
).configure_view(
stroke="transparent"
(
(bars + section_line + area + area_line_1 + area_line_2 + top_bars + top_text)
.properties(width=900, height=400)
.configure_axis(title=None, gridColor="white", gridOpacity=0.25, domain=False)
.configure_view(stroke="transparent")
)

0 comments on commit ef7fb2e

Please sign in to comment.