Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -65,7 +65,12 @@ class DownloadsTracker:
|
|
65 |
fig.update_yaxes(type="linear", row=1, col=1)
|
66 |
fig.update_yaxes(type="linear", row=2, col=1)
|
67 |
|
68 |
-
fig.update_layout(
|
|
|
|
|
|
|
|
|
|
|
69 |
return fig
|
70 |
|
71 |
def render(self, package_list, use_log_scale):
|
|
|
65 |
fig.update_yaxes(type="linear", row=1, col=1)
|
66 |
fig.update_yaxes(type="linear", row=2, col=1)
|
67 |
|
68 |
+
fig.update_layout(
|
69 |
+
height=800,
|
70 |
+
font=dict(size=16),
|
71 |
+
title_font=dict(size=20),
|
72 |
+
legend_font=dict(size=16)
|
73 |
+
)
|
74 |
return fig
|
75 |
|
76 |
def render(self, package_list, use_log_scale):
|