ECharts graph modularity extension for community detection
npm install echarts-graph-modularityGraph modularity extension will do community detection and partition a graph's vertices in several subsets. Each subset will be assigned a different color.

``html`
Or
`shell`
npm install echarts-graph-modularity
`js`
import * as echarts from 'echarts';
import 'echarts-graph-modularity';
NOTE:
V2.x is for ECharts 5.x
`js
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
}
...
}]
})
``