Skip to content

Commit 7ab9788

Browse files
committed
remove all y_clamp values
1 parent 0227f31 commit 7ab9788

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/penn_chime/charts.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ def new_admissions_chart(
2121

2222
if max_y_axis is not None:
2323
y_scale.domain = (0, max_y_axis)
24-
y_scale.clamp = False
2524

2625
tooltip_dict = {False: "day", True: "date:T"}
2726
if as_date:
@@ -68,7 +67,6 @@ def admitted_patients_chart(
6867

6968
if max_y_axis:
7069
y_scale.domain = (0, max_y_axis)
71-
y_scale.clamp = False
7270

7371
return (
7472
alt.Chart(census.head(plot_projection_days))
@@ -109,7 +107,6 @@ def additional_projections_chart(
109107

110108
if max_y_axis is not None:
111109
y_scale.domain = (0, max_y_axis)
112-
y_scale.clamp = False
113110

114111
return (
115112
alt.Chart(dat)

0 commit comments

Comments
 (0)