(element, point)
| 2356 | afterEach(destroyGraphDiv); |
| 2357 | |
| 2358 | function _getLocalPos(element, point) { |
| 2359 | var bb = element.getBoundingClientRect(); |
| 2360 | return [ |
| 2361 | bb.left + point[0], |
| 2362 | bb.top + point[1] |
| 2363 | ]; |
| 2364 | } |
| 2365 | |
| 2366 | function transformPlot(gd, transformString) { |
| 2367 | gd.style.webkitTransform = transformString; |
no outgoing calls
no test coverage detected
searching dependent graphs…