mirror of
https://gitee.com/antv/g6.git
synced 2024-12-02 03:38:20 +08:00
26 lines
481 B
JavaScript
26 lines
481 B
JavaScript
/**
|
|
* @fileOverview DAG 分层布局
|
|
* @author huangtonger@aliyun.com
|
|
*/
|
|
const G6 = require('@antv/g6');
|
|
const Layout = require('./layout');
|
|
|
|
G6.Layouts.Dagre = Layout;
|
|
|
|
class Plugin {
|
|
constructor(options) {
|
|
this.options = options;
|
|
}
|
|
init() {
|
|
const graph = this.graph;
|
|
graph.on('beforeinit', () => {
|
|
const layout = new Layout(this.options);
|
|
graph.set('layout', layout);
|
|
});
|
|
}
|
|
}
|
|
|
|
G6.Plugins['layout.dagre'] = Plugin;
|
|
|
|
module.exports = Plugin;
|