plotly.js
Version:
The open source javascript graphing library that powers plotly
12 lines (9 loc) • 344 B
JavaScript
var draw = require('../treemap/draw');
var drawDescendants = require('./draw_descendants');
module.exports = function _plot(gd, cdmodule, transitionOpts, makeOnCompleteCallback) {
return draw(gd, cdmodule, transitionOpts, makeOnCompleteCallback, {
type: 'icicle',
drawDescendants: drawDescendants
});
};
;