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 c52fbe7 commit 9055d49Copy full SHA for 9055d49
src/traces/scattergl/convert.js
@@ -192,10 +192,10 @@ function convertMarkerStyle(trace) {
192
// See https://github.com/plotly/plotly.js/pull/1781#discussion_r121820798
193
if(multiLineWidth) {
194
for(i = 0; i < count; i++) {
195
- borderSizes[i] = markerSizeFunc(optsIn.line.width[i]);
+ borderSizes[i] = optsIn.line.width[i] / 2;
196
}
197
} else {
198
- s = markerSizeFunc(optsIn.line.width);
+ s = optsIn.line.width / 2;
199
200
borderSizes[i] = s;
201
0 commit comments