Update app.py
Browse files
app.py
CHANGED
|
@@ -52,6 +52,9 @@ def display_graph_properties(G):
|
|
| 52 |
|
| 53 |
# Only display Basic: Properties when it is selected from the sidebar
|
| 54 |
if sidebar_option == "Basic: Properties":
|
|
|
|
|
|
|
|
|
|
| 55 |
# Add a radio button for selecting the graph type
|
| 56 |
option = st.radio("Choose a graph type:", ("Default Example", "Create your own"))
|
| 57 |
|
|
|
|
| 52 |
|
| 53 |
# Only display Basic: Properties when it is selected from the sidebar
|
| 54 |
if sidebar_option == "Basic: Properties":
|
| 55 |
+
# Set the title for the page
|
| 56 |
+
st.title("Basic: Properties")
|
| 57 |
+
|
| 58 |
# Add a radio button for selecting the graph type
|
| 59 |
option = st.radio("Choose a graph type:", ("Default Example", "Create your own"))
|
| 60 |
|