Skip to content

Commit

Permalink
Merge d2c22bd into 3d07924
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Aug 20, 2020
2 parents 3d07924 + d2c22bd commit 9263c06
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions holoviews/operation/datashader.py
Expand Up @@ -1511,10 +1511,11 @@ class SpreadingOperation(LinkableOperation):
to make sparse plots more visible.
"""

how = param.ObjectSelector(default='source',
objects=['source', 'over', 'saturate', 'add'], doc="""
how = param.ObjectSelector(default='source' if ds_version <= '0.11.1' else None,
objects=[None, 'source', 'over', 'saturate', 'add', 'max', 'min'], doc="""
The name of the compositing operator to use when combining
pixels.""")
pixels. Default of None uses 'over' operator for RGB elements
and 'add' operator for aggregate arrays.""")

shape = param.ObjectSelector(default='circle', objects=['circle', 'square'],
doc="""
Expand Down

0 comments on commit 9263c06

Please sign in to comment.