davidmezzetti commited on
Commit
6100210
·
1 Parent(s): a89f88e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -486,8 +486,8 @@ class Application:
486
  alt.Chart(metrics)
487
  .mark_line(interpolate="monotone", point=True, strokeWidth=2.5, opacity=0.75)
488
  .encode(
489
- x=alt.X("yearID", title="").scale(padding=0),
490
- y=alt.Y(metric).scale(zero=False, padding=0),
491
  )
492
  )
493
 
 
486
  alt.Chart(metrics)
487
  .mark_line(interpolate="monotone", point=True, strokeWidth=2.5, opacity=0.75)
488
  .encode(
489
+ x=alt.X("yearID", title=""),
490
+ y=alt.Y(metric, scale=alt.Scale(zero=False))
491
  )
492
  )
493