ginipick commited on
Commit
02b02b9
Β·
verified Β·
1 Parent(s): d85f4e7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -2
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
- yaxis_autorange="reversed", # μˆœμœ„ 1이 μœ„μͺ½μ— μ˜€λ„λ‘
 
 
 
 
 
 
 
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