Tobi-ewl commited on
Commit
c4ea622
·
verified ·
1 Parent(s): 54b4872

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -678,7 +678,7 @@ elif modus == "Upload csv-Datei":
678
 
679
  st.markdown("### Mittlere annualisierte Kosten pro Heizsystem (Batch-Durchschnitt)")
680
  st.altair_chart(
681
- alt.Chart(df_stacked)
682
  .mark_bar()
683
  .encode(
684
  x=alt.X("Wert:Q", title="mittlere annualisierte Kosten (€)", stack="zero"),
@@ -705,7 +705,7 @@ elif modus == "Upload csv-Datei":
705
  fontSize=16,
706
  anchor="start"
707
  )
708
- )
709
  use_container_width=True
710
  )
711
 
 
678
 
679
  st.markdown("### Mittlere annualisierte Kosten pro Heizsystem (Batch-Durchschnitt)")
680
  st.altair_chart(
681
+ (alt.Chart(df_stacked)
682
  .mark_bar()
683
  .encode(
684
  x=alt.X("Wert:Q", title="mittlere annualisierte Kosten (€)", stack="zero"),
 
705
  fontSize=16,
706
  anchor="start"
707
  )
708
+ )),
709
  use_container_width=True
710
  )
711