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 bff00ac commit 48d057fCopy full SHA for 48d057f
src/traces/scattergl/convert.js
@@ -225,6 +225,8 @@ function convertTextStyle(gd, trace) {
225
return optsOut;
226
}
227
228
+// scattergl rendering pipeline has limited support of numeric weight values
229
+// Here we map the numbers to be either bold or normal.
230
function weightFallBack(w) {
231
if(w <= 1000) {
232
return w > 500 ? 'bold' : 'normal';
0 commit comments