We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 199418b commit 8743c6aCopy full SHA for 8743c6a
1 file changed
src/traces/image/plot.js
@@ -26,7 +26,9 @@ module.exports = function plot(gd, plotinfo, cdimage, imageLayer) {
26
var plotGroup = d3.select(this);
27
var cd0 = cd[0];
28
var trace = cd0.trace;
29
- var realImage = supportsPixelatedImage && !trace._hasZ && trace._hasSource && xa.type === 'linear' && ya.type === 'linear';
+ var realImage = trace.zsmooth === 'fast' || (
30
+ supportsPixelatedImage && !trace._hasZ && trace._hasSource && xa.type === 'linear' && ya.type === 'linear'
31
+ );
32
trace._realImage = realImage;
33
34
var z = cd0.z;
0 commit comments