Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -273,8 +273,8 @@ class ReportGenerator:
|
|
273 |
plt.subplots_adjust(
|
274 |
left=0.07, # Margem esquerda reduzida
|
275 |
right=0.93, # Margem direita aumentada
|
276 |
-
top=0.
|
277 |
-
bottom=0.
|
278 |
)
|
279 |
|
280 |
ax = plt.gca()
|
@@ -398,12 +398,12 @@ class ReportGenerator:
|
|
398 |
|
399 |
def create_tasks_performance_plot(self) -> plt.Figure:
|
400 |
"""Cria o gráfico de relação entre tarefas e acertos com visualização otimizada."""
|
401 |
-
plt.figure(figsize=(13,
|
402 |
plt.subplots_adjust(
|
403 |
left=0.07,
|
404 |
right=0.93,
|
405 |
-
top=0.
|
406 |
-
bottom=0.
|
407 |
)
|
408 |
|
409 |
ax = plt.gca()
|
|
|
273 |
plt.subplots_adjust(
|
274 |
left=0.07, # Margem esquerda reduzida
|
275 |
right=0.93, # Margem direita aumentada
|
276 |
+
top=0.92, # Margem superior aumentada
|
277 |
+
bottom=0.12 # Margem inferior reduzida
|
278 |
)
|
279 |
|
280 |
ax = plt.gca()
|
|
|
398 |
|
399 |
def create_tasks_performance_plot(self) -> plt.Figure:
|
400 |
"""Cria o gráfico de relação entre tarefas e acertos com visualização otimizada."""
|
401 |
+
plt.figure(figsize=(13, 6))
|
402 |
plt.subplots_adjust(
|
403 |
left=0.07,
|
404 |
right=0.93,
|
405 |
+
top=0.92,
|
406 |
+
bottom=0.12
|
407 |
)
|
408 |
|
409 |
ax = plt.gca()
|