Update my_pages/multiverse.py
Browse files- my_pages/multiverse.py +6 -0
my_pages/multiverse.py
CHANGED
|
@@ -1,8 +1,11 @@
|
|
| 1 |
# pages/multiverse.py
|
| 2 |
import streamlit as st
|
|
|
|
| 3 |
import plotly.graph_objects as go
|
| 4 |
from utils import go_to
|
| 5 |
|
|
|
|
|
|
|
| 6 |
choices_list = [
|
| 7 |
{"label": "Data Collection", "icon": "📥", "questions": [
|
| 8 |
"Where will you source the data from?",
|
|
@@ -167,6 +170,9 @@ def render():
|
|
| 167 |
hovermode="closest"
|
| 168 |
)
|
| 169 |
|
|
|
|
|
|
|
|
|
|
| 170 |
st.plotly_chart(fig, use_container_width=True)
|
| 171 |
|
| 172 |
st.markdown("---")
|
|
|
|
| 1 |
# pages/multiverse.py
|
| 2 |
import streamlit as st
|
| 3 |
+
import matplotlib.pyplot as plt
|
| 4 |
import plotly.graph_objects as go
|
| 5 |
from utils import go_to
|
| 6 |
|
| 7 |
+
plt.style.use('dark_background')
|
| 8 |
+
|
| 9 |
choices_list = [
|
| 10 |
{"label": "Data Collection", "icon": "📥", "questions": [
|
| 11 |
"Where will you source the data from?",
|
|
|
|
| 170 |
hovermode="closest"
|
| 171 |
)
|
| 172 |
|
| 173 |
+
fig.patch.set_alpha(0)
|
| 174 |
+
# ax.patch.set_alpha(0)
|
| 175 |
+
|
| 176 |
st.plotly_chart(fig, use_container_width=True)
|
| 177 |
|
| 178 |
st.markdown("---")
|