From 3deb3a8493b2bc4dfca968a6b9b4c89b4266430b Mon Sep 17 00:00:00 2001 From: jlstevens Date: Tue, 20 Jun 2017 15:31:19 +0100 Subject: [PATCH] Made new contours plot options conditional --- holoviews/plotting/bokeh/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/holoviews/plotting/bokeh/__init__.py b/holoviews/plotting/bokeh/__init__.py index fc1adb45f3..2fefc35c74 100644 --- a/holoviews/plotting/bokeh/__init__.py +++ b/holoviews/plotting/bokeh/__init__.py @@ -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')