(w)
| 243 | // scattergl rendering pipeline has limited support of numeric weight values |
| 244 | // Here we map the numbers to be either bold or normal. |
| 245 | function weightFallBack(w) { |
| 246 | if (w <= 1000) { |
| 247 | return w > 500 ? 'bold' : 'normal'; |
| 248 | } |
| 249 | return w; |
| 250 | } |
| 251 | |
| 252 | function convertMarkerStyle(gd, trace) { |
| 253 | var count = trace._length; |
no outgoing calls
no test coverage detected
searching dependent graphs…