Skip to content

Commit

Permalink
Rotate date-times on Biosignal plots
Browse files Browse the repository at this point in the history
  • Loading branch information
jomy-kk committed Mar 11, 2024
1 parent 66221b6 commit a297f24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ltbio/biosignals/modalities/Biosignal.py
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,7 @@ def __draw_plot(self, timeseries_plotting_method, title, xlabel, ylabel, grid_on
ax.margins(x=0)
ax.set_xlabel(xlabel, fontsize=8, rotation=0, loc="right")
ax.set_ylabel(ylabel, fontsize=8, rotation=90, loc="top")
plt.xticks(fontsize=9)
plt.xticks(fontsize=9, rotation=60)
plt.yticks(fontsize=9)
if grid_on:
ax.grid()
Expand Down

0 comments on commit a297f24

Please sign in to comment.