Skip to content

Commit 875b7d1

Browse files
committed
add ylim
1 parent 46872f9 commit 875b7d1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

PyComplexHeatmap/annotations.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,12 @@ def __init__(
6767
height=None,
6868
legend=None,
6969
legend_kws=None,
70+
ylim=None,
7071
**plot_kws
7172
):
7273
self._check_df(df)
7374
self.label = None
74-
self.ylim = None
75+
self.ylim = ylim
7576
self.color_dict = None
7677
self.nrows = self.df.shape[0]
7778
self.ncols = self.df.shape[1]

0 commit comments

Comments
 (0)