g6/plugins/template.maxSpanningForest
2018-07-23 18:46:06 +08:00
..
index.js feat: jiuselu: loading image during the process of webworker calculating 2018-07-23 17:02:08 +08:00
maxSpanningForest.js publish 2.0.3-beta 2018-06-14 11:50:35 +08:00
maxSpanningTree.js publish 2.0.3-beta 2018-06-14 11:50:35 +08:00
README.md docs: readme of template.maxSpanningForest 2018-07-23 18:46:06 +08:00

maxSpanningForest

template.maxSpanningForest for jiuselu graph analyzer, which is a plugin for graph. This is a collection of fundamental functions, including:

  • the style of the nodes and graphs,
  • extracting max spanning forest,
  • Force Atlas 2 layout algorithm( with webworker ),
  • interactions
    • extracting subgraph
    • highlight subgraph
    • fisheye lens
    • onclick
    • menu operations

parameter for this plugin:

  • layoutCfg: the configuration for layout.
    • max_iteration: the number of iteration for terminating the layout algorithm
    • kg: the gravity parameter for layout. The larger kg, more compact the graph, expecialy for the isolated subgraphs.
    • prev_overlapping: whether preventing the node overlapping
    • onLayoutComplete: a listener for layout completement. When the layout is complete, the loading div and img disappear.

use

simple use.

const MaxSpanningForestPlugin = G6.Plugins['template.maxSpanningForest'];
//the instances of plugins
const maxSpanningForest = new MaxSpanningForestPlugin({
  layoutCfg: {
    max_iteration: 600,
    kg: 10,
    prev_overlapping: true,
    onLayoutComplete: function () {
      const minimap = document.getElementById('minimap');
      const legend = document.getElementById('legend');
      if (minimap !== undefined) minimap.style.display = 'block';
      if (legend !== undefined) legend.style.display = 'block';
    }
  }
});