Update app.py
Browse files
app.py
CHANGED
|
@@ -76,7 +76,7 @@ map_chart = alt.Chart(countries).mark_geoshape(
|
|
| 76 |
alt.value('lightgray')),
|
| 77 |
).properties(
|
| 78 |
width=900,
|
| 79 |
-
height=
|
| 80 |
).project('naturalEarth1').add_selection(selection)
|
| 81 |
|
| 82 |
|
|
@@ -101,8 +101,8 @@ if selection != 'none':
|
|
| 101 |
selection
|
| 102 |
).properties(
|
| 103 |
title=f'Total Contracts per Fiscal Year',
|
| 104 |
-
width=
|
| 105 |
-
height=
|
| 106 |
)
|
| 107 |
final_chart = map_chart & line_plot
|
| 108 |
|
|
|
|
| 76 |
alt.value('lightgray')),
|
| 77 |
).properties(
|
| 78 |
width=900,
|
| 79 |
+
height=600
|
| 80 |
).project('naturalEarth1').add_selection(selection)
|
| 81 |
|
| 82 |
|
|
|
|
| 101 |
selection
|
| 102 |
).properties(
|
| 103 |
title=f'Total Contracts per Fiscal Year',
|
| 104 |
+
width=500,
|
| 105 |
+
height=300
|
| 106 |
)
|
| 107 |
final_chart = map_chart & line_plot
|
| 108 |
|