Update app.py
Browse files
app.py
CHANGED
@@ -180,6 +180,8 @@ def main():
|
|
180 |
|
181 |
# Enable only vertical grid lines (no horizontal grid lines)
|
182 |
ax.grid(False)
|
|
|
|
|
183 |
|
184 |
legend = ax.legend(prop=tick_font)
|
185 |
for text in legend.get_texts():
|
|
|
180 |
|
181 |
# Enable only vertical grid lines (no horizontal grid lines)
|
182 |
ax.grid(False)
|
183 |
+
for spine in ax.spines.values():
|
184 |
+
spine.set_visible(False)
|
185 |
|
186 |
legend = ax.legend(prop=tick_font)
|
187 |
for text in legend.get_texts():
|