Commit
·
6100210
1
Parent(s):
a89f88e
Update app.py
Browse files
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="")
|
490 |
-
y=alt.Y(metric
|
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 |
|