Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Flip dynspread output correctly
  • Loading branch information
philippjfr committed Apr 20, 2017
1 parent 1712282 commit 74cffe1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/operation/datashader.py
Expand Up @@ -438,6 +438,6 @@ def _process(self, element, key=None):
img = datashade.uint32_to_uint8(array)
for i, vd in enumerate(element.vdims):
if i < img.shape[-1]:
new_data[vd.name] = img[..., i]
new_data[vd.name] = np.flipud(img[..., i])
return element.clone(new_data)

0 comments on commit 74cffe1

Please sign in to comment.