Skip to content

Commit ddadf09

Browse files
authored
Fix for rendering Scatter3D with matplotlib 3.1 (#3898)
1 parent 3750b38 commit ddadf09

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

holoviews/plotting/mpl/chart3d.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,8 @@ def get_data(self, element, ranges, style):
131131
self._compute_styles(element, ranges, style)
132132
with abbreviated_exception():
133133
style = self._apply_transforms(element, ranges, style)
134+
if style.get('edgecolors') == 'none':
135+
style.pop('edgecolors')
134136
return (xs, ys, zs), style, {}
135137

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

0 commit comments

Comments
 (0)