Skip to content

Commit

Permalink
Made new contours plot options conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Jun 20, 2017
1 parent f12d6f8 commit 3deb3a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion holoviews/plotting/bokeh/__init__.py
Expand Up @@ -122,7 +122,8 @@

# Paths
options.Contours = Options('style', color=Cycle())
options.Contours = Options('plot', show_legend=True)
if not config.style_17:
options.Contours = Options('plot', show_legend=True)
options.Path = Options('style', color=Cycle())
options.Box = Options('style', color='black')
options.Bounds = Options('style', color='black')
Expand Down

0 comments on commit 3deb3a8

Please sign in to comment.