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 e6c883a commit 3ef4863Copy full SHA for 3ef4863
src/traces/choroplethmapbox/plot.js
@@ -26,6 +26,9 @@ var proto = ChoroplethMapbox.prototype;
26
27
proto.update = function(calcTrace) {
28
this._update(convert(calcTrace));
29
+
30
+ // link ref for quick update during selections
31
+ calcTrace[0].trace._glTrace = this;
32
};
33
34
proto.updateOnSelect = function(calcTrace) {
src/traces/scattermapbox/plot.js
@@ -130,7 +130,7 @@ proto.update = function update(calcTrace) {
130
this.clusterEnabled = hasCluster;
131
}
132
133
- // link ref for quick update during selections
134
calcTrace[0].trace._glTrace = this;
135
136
0 commit comments