1 Star 0 Fork 1

王亚北 / echarts-graph-modularity

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
README.md 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
The Alchemist 提交于 2018-12-18 14:10 . fix typo

ECharts graph modularity extension

logo

Graph modularity extension will do community detection and partition a graph's vertices in several subsets. Each subset will be assigned a different color.

Install

<script src="echarts.min.js"></script>
<script src="echarts-graph-modularity.min.js"></script>

Or

npm install echarts-graph-modularity
var echarts = require('echarts');
require('echarts-graph-modularity');

Usage

setOption({

    ...

    series: [{
        type: 'graph',
        layout: 'force',
        // Set modularity property true and extension will automatically detect different communities
        // and assign each different color.
        modularity: true

        // Specify resolution. Higher resolution will produce less communities
        modularity: {
            resolution: 5,
            // If sort the communities
            sort: false
        }

        ...
    }]
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/wang-abib/echarts-graph-modularity.git
git@gitee.com:wang-abib/echarts-graph-modularity.git
wang-abib
echarts-graph-modularity
echarts-graph-modularity
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891