Update app.py
Browse files
app.py
CHANGED
@@ -117,14 +117,23 @@ if st.session_state.history:
|
|
117 |
)
|
118 |
radar_fig.update_layout(
|
119 |
polar=dict(
|
|
|
|
|
120 |
radialaxis=dict(
|
121 |
showticklabels=False,
|
122 |
ticks='',
|
123 |
-
|
|
|
|
|
|
|
|
|
124 |
),
|
125 |
angularaxis=dict(
|
126 |
showticklabels=False,
|
127 |
-
ticks=''
|
|
|
|
|
|
|
128 |
)
|
129 |
),
|
130 |
paper_bgcolor='white',
|
|
|
117 |
)
|
118 |
radar_fig.update_layout(
|
119 |
polar=dict(
|
120 |
+
gridshape='circular',
|
121 |
+
bgcolor='white',
|
122 |
radialaxis=dict(
|
123 |
showticklabels=False,
|
124 |
ticks='',
|
125 |
+
showgrid=True,
|
126 |
+
gridcolor='lightgrey',
|
127 |
+
gridwidth=1,
|
128 |
+
linecolor='black',
|
129 |
+
linewidth=2
|
130 |
),
|
131 |
angularaxis=dict(
|
132 |
showticklabels=False,
|
133 |
+
ticks='',
|
134 |
+
showline=True,
|
135 |
+
linecolor='black',
|
136 |
+
linewidth=2
|
137 |
)
|
138 |
),
|
139 |
paper_bgcolor='white',
|