Skip to content

Commit 41caaae

Browse files
committed
axes_grid1 : fix missing circle-type scatter plot in legend. close matplotlib#81.
1 parent a213c61 commit 41caaae

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/mpl_toolkits/axes_grid1/parasite_axes.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,9 @@ def _get_handles(ax):
233233
if isinstance(c, mcoll.LineCollection)])
234234
handles.extend([c for c in ax.collections
235235
if isinstance(c, mcoll.RegularPolyCollection)])
236+
handles.extend([c for c in ax.collections
237+
if isinstance(c, mcoll.CircleCollection)])
238+
236239
return handles
237240

238241

0 commit comments

Comments
 (0)