Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -79,10 +79,29 @@ def create_trend_chart(space_id, daily_ranks_df):
|
|
79 |
fig.update_layout(
|
80 |
xaxis_title="Date",
|
81 |
yaxis_title="Rank",
|
82 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
hovermode='x unified',
|
84 |
plot_bgcolor='white',
|
85 |
-
paper_bgcolor='white'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
)
|
87 |
|
88 |
return fig
|
|
|
79 |
fig.update_layout(
|
80 |
xaxis_title="Date",
|
81 |
yaxis_title="Rank",
|
82 |
+
yaxis=dict(
|
83 |
+
autorange=False, # μλ λ²μ λΉνμ±ν
|
84 |
+
range=[1, 100], # 1μλΆν° 100μκΉμ§ κ³ μ
|
85 |
+
tickmode='linear', # μ ν κ°κ²©μΌλ‘ λκΈ νμ
|
86 |
+
tick0=1, # 첫 λκΈ
|
87 |
+
dtick=10, # λκΈ κ°κ²© (10λ¨μλ‘ νμ)
|
88 |
+
autorange="reversed" # 1μκ° μμͺ½μ μ€λλ‘ λ°μ
|
89 |
+
),
|
90 |
hovermode='x unified',
|
91 |
plot_bgcolor='white',
|
92 |
+
paper_bgcolor='white',
|
93 |
+
showlegend=False
|
94 |
+
)
|
95 |
+
|
96 |
+
# 격μ μΆκ°
|
97 |
+
fig.update_xaxes(showgrid=True, gridwidth=1, gridcolor='lightgray')
|
98 |
+
fig.update_yaxes(showgrid=True, gridwidth=1, gridcolor='lightgray')
|
99 |
+
|
100 |
+
# λΌμΈ μ€νμΌ μμ
|
101 |
+
fig.update_traces(
|
102 |
+
line_color='#2563eb',
|
103 |
+
line_width=2,
|
104 |
+
marker=dict(size=8, color='#2563eb')
|
105 |
)
|
106 |
|
107 |
return fig
|