Skip to content

Commit

Permalink
Fixed edges_color issue in plotly TriSurface
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Apr 3, 2019
1 parent c906dcc commit d559b38
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions holoviews/plotting/plotly/chart3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,8 @@ def graph_options(self, element, ranges, style):
for _, c in copts['colorscale']]
opts['scale'] = [l for l, _ in copts['colorscale']]
opts['show_colorbar'] = self.colorbar
edges_color = style.get('edges_color', None)
if edges_color:
opts['edges_color'] = edges_color
opts['plot_edges'] = True

opts['edges_color'] = style.get('edges_color', 'black')
opts['plot_edges'] = 'edges_color' in style
opts['colorbar'] = copts.get('colorbar', None)

return {k: v for k, v in opts.items() if 'legend' not in k and k != 'name'}
Expand Down

0 comments on commit d559b38

Please sign in to comment.