Spaces:
Runtime error
Runtime error
Commit ·
f02bde6
1
Parent(s): 1354591
increase height of plot
Browse files
app.py
CHANGED
|
@@ -2,6 +2,8 @@ import streamlit as st
|
|
| 2 |
import pandas as pd
|
| 3 |
import altair as alt
|
| 4 |
|
|
|
|
|
|
|
| 5 |
st.markdown("""
|
| 6 |
<link href="https://fonts.googleapis.com/css2?family=Urbanist:wght@400;700&display=swap" rel="stylesheet">
|
| 7 |
<style>
|
|
@@ -99,6 +101,7 @@ histogram = alt.Chart(video_df).mark_bar(
|
|
| 99 |
#width=750,
|
| 100 |
#width='container',
|
| 101 |
#height='container',
|
|
|
|
| 102 |
#background='beige',
|
| 103 |
#padding=50,
|
| 104 |
title=alt.TitleParams(
|
|
|
|
| 2 |
import pandas as pd
|
| 3 |
import altair as alt
|
| 4 |
|
| 5 |
+
#st.set_page_config(layout="wide")
|
| 6 |
+
|
| 7 |
st.markdown("""
|
| 8 |
<link href="https://fonts.googleapis.com/css2?family=Urbanist:wght@400;700&display=swap" rel="stylesheet">
|
| 9 |
<style>
|
|
|
|
| 101 |
#width=750,
|
| 102 |
#width='container',
|
| 103 |
#height='container',
|
| 104 |
+
height=500,
|
| 105 |
#background='beige',
|
| 106 |
#padding=50,
|
| 107 |
title=alt.TitleParams(
|