Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed datashader default colormap to fit HV defaults #2078

Merged
merged 2 commits into from Nov 3, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 7 additions & 4 deletions holoviews/operation/datashader.py
Expand Up @@ -497,10 +497,13 @@ class shade(Operation):
Iterable or a Callable.
"""

cmap = param.ClassSelector(default=fire, class_=(Iterable, Callable, dict), doc="""
Iterable or callable which returns colors as hex colors, to
be used for the colormap of single-layer datashader output.
Callable type must allow mapping colors between 0 and 1.""")
cmap = param.ClassSelector(class_=(Iterable, Callable, dict), doc="""
Iterable or callable which returns colors as hex colors
or web color names (as defined by datashader), to be used
for the colormap of single-layer datashader output.
Callable type must allow mapping colors between 0 and 1.
The default value of None reverts to Datashader's default
colormap.""")

color_key = param.ClassSelector(class_=(Iterable, Callable, dict), doc="""
Iterable or callable which returns colors as hex colors, to
Expand Down