Skip to content

Commit 26464ec

Browse files
committed
update DendrogramPlotter
1 parent 9106d90 commit 26464ec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PyComplexHeatmap/clustermap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -984,7 +984,7 @@ def plot(self, ax, gap_pixel=None, root_x=None,tree_kws=None,
984984
center_y = np.mean(y[1:-1])
985985
center = (center_x, center_y)
986986
bx, by = evaluate_bezier(getControlPoints((x[0],y[0]),center,axis=self.axis))
987-
ax.plot(bx, by, color=color)
987+
ax.plot(bx, by, color=color,**tree_kws)
988988
bx, by = evaluate_bezier(getControlPoints((x[-1], y[-1]), center,axis=self.axis))
989989
ax.plot(bx, by, color=color,**tree_kws)
990990
if root_dot:

0 commit comments

Comments
 (0)