Skip to content

Commit

Permalink
fix(report): show zero value in bar plots
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrugman committed Sep 1, 2022
1 parent bd3ea29 commit 6a350d4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions popmon/visualization/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,10 @@ def plot_bars(
linecolor="black",
mirror=True,
)
fig.update_traces(
marker_line_color=primary_color,
marker_line_width=1,
)
# plot boundaries
try:
all_nan = (np.isnan(data)).all()
Expand Down

0 comments on commit 6a350d4

Please sign in to comment.