Sompote commited on
Commit
412ed3a
·
verified ·
1 Parent(s): f4cbb31

Upload app.py

Browse files
Files changed (1) hide show
  1. src/app.py +3 -0
src/app.py CHANGED
@@ -152,6 +152,9 @@ if hasattr(st.session_state, "analysis_done") and st.session_state.analysis_done
152
  ax.grid(True, alpha=0.3, linestyle="--")
153
  ax.tick_params(labelsize=12)
154
 
 
 
 
155
  # Add final settlement annotation
156
  final_settlement = st.session_state.settlement[-1]
157
  ax.axhline(
 
152
  ax.grid(True, alpha=0.3, linestyle="--")
153
  ax.tick_params(labelsize=12)
154
 
155
+ # Invert y-axis (settlement goes down)
156
+ ax.invert_yaxis()
157
+
158
  # Add final settlement annotation
159
  final_settlement = st.session_state.settlement[-1]
160
  ax.axhline(