Update modules/studentact/current_situation_interface.py
Browse files
modules/studentact/current_situation_interface.py
CHANGED
@@ -25,10 +25,10 @@ from .current_situation_analysis import (
|
|
25 |
)
|
26 |
|
27 |
# Configuraci贸n del estilo de matplotlib para el gr谩fico de radar
|
28 |
-
plt.style.use('seaborn') # Opcional - da un estilo m谩s moderno
|
29 |
plt.rcParams['font.family'] = 'sans-serif'
|
30 |
-
plt.rcParams['
|
31 |
-
|
|
|
32 |
|
33 |
logger = logging.getLogger(__name__)
|
34 |
####################################
|
|
|
25 |
)
|
26 |
|
27 |
# Configuraci贸n del estilo de matplotlib para el gr谩fico de radar
|
|
|
28 |
plt.rcParams['font.family'] = 'sans-serif'
|
29 |
+
plt.rcParams['axes.grid'] = True
|
30 |
+
plt.rcParams['axes.spines.top'] = False
|
31 |
+
plt.rcParams['axes.spines.right'] = False
|
32 |
|
33 |
logger = logging.getLogger(__name__)
|
34 |
####################################
|