Skip to content

Commit

Permalink
test: test commit
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarros committed Aug 6, 2024
1 parent 9771fb1 commit b36176a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/ydata_profiling/visualisation/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,6 @@ def plot_timeseries_gap_analysis(
label=label,
color=color,
alpha=0.65,
x_compat=True,
)
_format_ts_date_axis(serie, ax)
ax.yaxis.set_major_locator(MaxNLocator(integer=True))
Expand Down Expand Up @@ -678,11 +677,11 @@ def _plot_timeseries(
colors = create_comparison_color_list(config)

for serie, color, label in zip(series, colors, labels):
ax = serie.plot(color=color, label=label, alpha=0.75, x_compat=True)
ax = serie.plot(color=color, label=label, alpha=0.75)
_format_ts_date_axis(serie, ax)

else:
ax = series.plot(color=config.html.style.primary_colors[0], x_compat=True)
ax = series.plot(color=config.html.style.primary_colors[0])
_format_ts_date_axis(series, ax)

return plot
Expand Down

0 comments on commit b36176a

Please sign in to comment.