(trace, target, plotGlPixelRatio)
| 441 | } |
| 442 | |
| 443 | function convertErrorBarStyle(trace, target, plotGlPixelRatio) { |
| 444 | var optsOut = { |
| 445 | capSize: target.width * 2 * plotGlPixelRatio, |
| 446 | lineWidth: target.thickness * plotGlPixelRatio, |
| 447 | color: target.color |
| 448 | }; |
| 449 | |
| 450 | if (target.copy_ystyle) { |
| 451 | optsOut = trace.error_y; |
| 452 | } |
| 453 | |
| 454 | return optsOut; |
| 455 | } |
| 456 | |
| 457 | var SYMBOL_SDF_SIZE = constants.SYMBOL_SDF_SIZE; |
| 458 | var SYMBOL_SIZE = constants.SYMBOL_SIZE; |
no outgoing calls
no test coverage detected
searching dependent graphs…