@antv/g2
Version:
the Grammar of Graphics in Javascript
11 lines • 372 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Tree = void 0;
const d3_hierarchy_1 = require("d3-hierarchy");
const cluster_1 = require("./cluster");
const Tree = (options) => {
return (0, cluster_1.hierarchyFunction)(d3_hierarchy_1.tree)(options);
};
exports.Tree = Tree;
exports.Tree.props = {};
//# sourceMappingURL=tree.js.map
;