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 7052615 commit 1a47dbdCopy full SHA for 1a47dbd
src/traces/parcoords/base_plot.js
@@ -69,4 +69,13 @@ exports.toSVG = function(gd) {
69
70
imageRoot.selectAll('*').remove();
71
canvases.each(canvasToImage);
72
+
73
+ // Chrome / Safari bug workaround - browser apparently loses connection to the defined pattern
74
+ // Without the workaround, these browsers 'lose' the filter brush styling (color etc.) after a snapshot
75
+ // on a subsequent interaction.
76
+ // Firefox works fine without this workaround
77
+ window.setTimeout(function() {
78
+ d3.selectAll('#filterBarPattern')
79
+ .attr('id', 'filterBarPattern');
80
+ }, 0);
81
};
0 commit comments