Skip to content

Commit 212d7bc

Browse files
authored
Update parallel_analysis.py
1 parent d5585f6 commit 212d7bc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

parallel_analysis.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,13 +123,13 @@ def render_parallel_csv_analysis_tab():
123123
})
124124

125125
comparison_df = pd.DataFrame(comparison_data)
126-
st.dataframe(comparison_df, use_container_width=True)
126+
st.dataframe(comparison_df, width='stretch')
127127

128128
st.subheader("📈 Optimization Progress Over Time")
129129

130130
fig = create_parallel_progress_plot(minutes, run_data, best_objectives, best_runs, best_run_id,
131131
worst_run_id)
132-
st.plotly_chart(fig, use_container_width=True)
132+
st.plotly_chart(fig, width='stretch')
133133

134134
except UnicodeDecodeError:
135135
st.error("Error reading CSV file. Please ensure the file is a text file with UTF-8 encoding.")

0 commit comments

Comments
 (0)