Spaces:
Runtime error
Runtime error
updated height for plot
Browse files
app.py
CHANGED
@@ -103,7 +103,7 @@ def bokehplots():
|
|
103 |
return p
|
104 |
|
105 |
|
106 |
-
with gr.Blocks(css = '#myplot {height:
|
107 |
with gr.Row():
|
108 |
plot = gr.Plot(elem_id='myplot')
|
109 |
out_dataframe = gr.Dataframe(wrap=True, max_rows=10, overflow_row_behaviour= "paginate", datatype = ["str", "number", "number"], interactive=False)
|
|
|
103 |
return p
|
104 |
|
105 |
|
106 |
+
with gr.Blocks(css = '#myplot {height: 700px;}') as demo:
|
107 |
with gr.Row():
|
108 |
plot = gr.Plot(elem_id='myplot')
|
109 |
out_dataframe = gr.Dataframe(wrap=True, max_rows=10, overflow_row_behaviour= "paginate", datatype = ["str", "number", "number"], interactive=False)
|