We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10f477f commit 82863fdCopy full SHA for 82863fd
src/traces/scattergl/convert.js
@@ -190,7 +190,7 @@ function convertTextStyle(gd, trace) {
190
if(
191
isArrayOrTypedArray(tfs) ||
192
Array.isArray(tff) ||
193
- Lib.isArrayOrTypedArray(tfw) ||
+ isArrayOrTypedArray(tfw) ||
194
Array.isArray(tfy) ||
195
Array.isArray(tfv)
196
) {
@@ -207,7 +207,7 @@ function convertTextStyle(gd, trace) {
207
) * plotGlPixelRatio;
208
209
fonti.family = Array.isArray(tff) ? tff[i] : tff;
210
- fonti.weight = weightFallBack(Lib.isArrayOrTypedArray(tfw) ? tfw[i] : tfw);
+ fonti.weight = weightFallBack(isArrayOrTypedArray(tfw) ? tfw[i] : tfw);
211
fonti.style = Array.isArray(tfy) ? tfy[i] : tfy;
212
fonti.variant = Array.isArray(tfv) ? tfv[i] : tfv;
213
}
0 commit comments