Skip to content

Commit

Permalink
Merge 7e05917 into 4e40914
Browse files Browse the repository at this point in the history
  • Loading branch information
jbednar committed Nov 9, 2017
2 parents 4e40914 + 7e05917 commit dabe69e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion holoviews/operation/datashader.py
Expand Up @@ -530,6 +530,12 @@ class shade(Operation):
Disable when you do not want the resulting plot to be interactive,
e.g. when trying to display an interactive plot a second time.""")

min_alpha = param.Number(default=40, 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
the expense of the overall dynamic range..""")

@classmethod
def concatenate(cls, overlay):
"""
Expand Down Expand Up @@ -577,7 +583,7 @@ 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)
shade_opts = dict(how=self.p.normalization, min_alpha=self.p.min_alpha)
if element.ndims > 2:
kdims = element.kdims[1:]
categories = array.shape[-1]
Expand Down

0 comments on commit dabe69e

Please sign in to comment.