Spaces:
Sleeping
Sleeping
Update src/pages/data_entry.py
Browse files- src/pages/data_entry.py +2 -1
src/pages/data_entry.py
CHANGED
|
@@ -487,9 +487,10 @@ def _render_db_health(db: WasteDB) -> None:
|
|
| 487 |
annotation_text="100% target")
|
| 488 |
fig_comp.update_layout(
|
| 489 |
title="Data Completeness by Month (%)",
|
| 490 |
-
yaxis=dict(range=[0, 115], title="%"),
|
| 491 |
**CHART_LAYOUT,
|
| 492 |
)
|
|
|
|
|
|
|
| 493 |
st.plotly_chart(fig_comp, use_container_width=True)
|
| 494 |
|
| 495 |
st.dataframe(
|
|
|
|
| 487 |
annotation_text="100% target")
|
| 488 |
fig_comp.update_layout(
|
| 489 |
title="Data Completeness by Month (%)",
|
|
|
|
| 490 |
**CHART_LAYOUT,
|
| 491 |
)
|
| 492 |
+
# yaxis=dict(range=[0, 115], title="%"),
|
| 493 |
+
fig_comp.update_yaxes(range=[0, 115], title="%")
|
| 494 |
st.plotly_chart(fig_comp, use_container_width=True)
|
| 495 |
|
| 496 |
st.dataframe(
|