(plotinfo, dragClass, cursor, x, y, w, h)
| 1051 | } |
| 1052 | |
| 1053 | function makeRectDragger(plotinfo, dragClass, cursor, x, y, w, h) { |
| 1054 | var dragger = makeDragger(plotinfo, 'rect', dragClass, cursor); |
| 1055 | d3.select(dragger).call(Drawing.setRect, x, y, w, h); |
| 1056 | return dragger; |
| 1057 | } |
| 1058 | |
| 1059 | function isDirectionActive(axList, activeVal) { |
| 1060 | for(var i = 0; i < axList.length; i++) { |
no test coverage detected
searching dependent graphs…