Skip to content

Commit

Permalink
Made polygon style change respect style_17 flag
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Jun 20, 2017
1 parent 6178ed9 commit 250e5d3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion holoviews/plotting/mpl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,8 @@ def grid_selector(grid):
options.Box = Options('style', color='black')
options.Bounds = Options('style', color='black')
options.Ellipse = Options('style', color='black')
options.Polygons = Options('style', facecolor=Cycle(), edgecolor='black')
if not config.style_17:
options.Polygons = Options('style', facecolor=Cycle(), edgecolor='black')

# Interface
options.TimeSeries = Options('style', color=Cycle())
Expand Down

0 comments on commit 250e5d3

Please sign in to comment.