Spaces:
Sleeping
Sleeping
Latest changes with height
Browse files
app.py
CHANGED
|
@@ -55,7 +55,12 @@ stacked_bar_chart_county = alt.Chart(county_agency_building).mark_bar().encode(
|
|
| 55 |
).properties(
|
| 56 |
width=800,
|
| 57 |
height=500,
|
| 58 |
-
title="Stacked Bar Graph for Number of Buildings by County and Agency"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
)
|
| 60 |
|
| 61 |
# Display the stacked bar chart in Streamlit
|
|
|
|
| 55 |
).properties(
|
| 56 |
width=800,
|
| 57 |
height=500,
|
| 58 |
+
title="Stacked Bar Graph for Number of Buildings by County and Agency",
|
| 59 |
+
autosize=alt.AutoSizeParams(
|
| 60 |
+
type="fit",
|
| 61 |
+
contains="padding",
|
| 62 |
+
resize=True
|
| 63 |
+
)
|
| 64 |
)
|
| 65 |
|
| 66 |
# Display the stacked bar chart in Streamlit
|