Skip to content

Commit

Permalink
Fix for rendering Scatter3D with matplotlib 3.1 (#3898)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr authored Aug 14, 2019
1 parent 3750b38 commit ddadf09
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions holoviews/plotting/mpl/chart3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@ def get_data(self, element, ranges, style):
self._compute_styles(element, ranges, style)
with abbreviated_exception():
style = self._apply_transforms(element, ranges, style)
if style.get('edgecolors') == 'none':
style.pop('edgecolors')
return (xs, ys, zs), style, {}

def update_handles(self, key, axis, element, ranges, style):
Expand Down

0 comments on commit ddadf09

Please sign in to comment.