(pt)
| 15 | var drawAncestors = require('./draw_ancestors'); |
| 16 | |
| 17 | function getKey(pt) { |
| 18 | return helpers.isHierarchyRoot(pt) ? |
| 19 | '' : // don't use the dummyId |
| 20 | helpers.getPtId(pt); |
| 21 | } |
| 22 | |
| 23 | module.exports = function plotOne(gd, cd, element, transitionOpts, drawDescendants) { |
| 24 | var fullLayout = gd._fullLayout; |
no outgoing calls
no test coverage detected
searching dependent graphs…