Skip to content

Commit

Permalink
update dotheatmap grid
Browse files Browse the repository at this point in the history
  • Loading branch information
DingWB committed Sep 4, 2024
1 parent c65ac10 commit f5dd95c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PyComplexHeatmap/dotHeatmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ def post_processing(self):
if not self.spines:
for ax in self.heatmap_axes.ravel():
despine(ax=ax, left=True, bottom=True, right=True, top=True)
if not self.grid is None:
if not self.grid is None and self.grid!=False:
for ax in self.heatmap_axes.ravel():
ax.grid(axis='both', which=self.grid, color='black', linestyle='dashdot',
alpha=0.1) # which can also be set to major
Expand Down

0 comments on commit f5dd95c

Please sign in to comment.