Spaces:
Runtime error
Runtime error
updated layout for row display
Browse files
app.py
CHANGED
|
@@ -104,8 +104,9 @@ def bokehplots():
|
|
| 104 |
|
| 105 |
|
| 106 |
with gr.Blocks() as demo:
|
| 107 |
-
|
| 108 |
-
|
|
|
|
| 109 |
demo.load(bokehplots, outputs=[plot])
|
| 110 |
demo.load(fn=display_df, outputs=[out_dataframe])
|
| 111 |
|
|
|
|
| 104 |
|
| 105 |
|
| 106 |
with gr.Blocks() as demo:
|
| 107 |
+
with gr.Row():
|
| 108 |
+
plot = gr.Plot()
|
| 109 |
+
out_dataframe = gr.Dataframe(wrap=True, max_rows=10, overflow_row_behaviour= "paginate", datatype = ["str", "number", "number"], interactive=False)
|
| 110 |
demo.load(bokehplots, outputs=[plot])
|
| 111 |
demo.load(fn=display_df, outputs=[out_dataframe])
|
| 112 |
|