Skip to content

Commit

Permalink
Avoid QuadMesh binary comms
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Jan 20, 2018
1 parent 7bde8d4 commit c396b33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions holoviews/plotting/bokeh/raster.py
Expand Up @@ -197,8 +197,8 @@ def get_data(self, element, ranges, style):
XS, YS = [], []
for x, y, zval in zip(X, Y, zvals):
if np.isfinite(zval):
XS.append(x)
YS.append(y)
XS.append(list(x))
YS.append(list(y))
data = {'xs': XS, 'ys': YS, z.name: zvals[np.isfinite(zvals)]}
else:
xc, yc = (element.interface.coords(element, x, edges=True),
Expand Down

0 comments on commit c396b33

Please sign in to comment.