(gd, oldspikepoints)
| 2463 | } |
| 2464 | |
| 2465 | function spikesChanged(gd, oldspikepoints) { |
| 2466 | // don't relayout the plot because of new spikelines if spikelines points didn't change |
| 2467 | if (!oldspikepoints) return true; |
| 2468 | if ( |
| 2469 | oldspikepoints.vLinePoint !== gd._spikepoints.vLinePoint || |
| 2470 | oldspikepoints.hLinePoint !== gd._spikepoints.hLinePoint |
| 2471 | ) |
| 2472 | return true; |
| 2473 | return false; |
| 2474 | } |
| 2475 | |
| 2476 | function plainText(s, len) { |
| 2477 | return svgTextUtils.plainText(s || '', { |
no outgoing calls
no test coverage detected
searching dependent graphs…