Skip to content

Commit

Permalink
Merge 7742c99 into 9bf1270
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Apr 29, 2019
2 parents 9bf1270 + 7742c99 commit a11500f
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions holoviews/operation/datashader.py
Expand Up @@ -873,6 +873,12 @@ class shade(LinkableOperation):
supplied as an Iterable or a Callable.
"""

alpha = param.Integer(default=255, bounds=(0, 255), doc="""
Value between 0 - 255 representing the alpha value to use for
colormapped pixels that contain data (i.e. non-NaN values).
Regardless of this value, ``NaN`` values are set to be fully
transparent when doing colormapping.""")

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
Expand Down Expand Up @@ -900,7 +906,7 @@ class shade(LinkableOperation):
wishing to override autoranging.
""")

min_alpha = param.Number(default=40, doc="""
min_alpha = param.Number(default=40, bounds=(0, 255), doc="""
The minimum alpha value to use for non-empty pixels when doing
colormapping, in [0, 255]. Use a higher value to avoid
undersaturation, i.e. poorly visible low-value datapoints, at
Expand Down Expand Up @@ -975,7 +981,9 @@ def _process(self, element, key=None):

# Compute shading options depending on whether
# it is a categorical or regular aggregate
shade_opts = dict(how=self.p.normalization, min_alpha=self.p.min_alpha)
shade_opts = dict(how=self.p.normalization,
min_alpha=self.p.min_alpha,
alpha=self.p.alpha)
if element.ndims > 2:
kdims = element.kdims[1:]
categories = array.shape[-1]
Expand Down

0 comments on commit a11500f

Please sign in to comment.