All Projects → ecomfe → echarts-graph-modularity

ecomfe / echarts-graph-modularity

Licence: other
Apache ECharts graph modularity extension for community detection

Programming Languages

HTML
75241 projects
javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to echarts-graph-modularity

myblog
An Open Source Multi-user Blog System that Powered by Flask.
Stars: ✭ 19 (-69.35%)
Mutual labels:  echarts
datart
Datart is a next generation Data Visualization Open Platform
Stars: ✭ 1,042 (+1580.65%)
Mutual labels:  echarts
ngx-echarts-starter
A starter demo project for ngx-echarts
Stars: ✭ 29 (-53.23%)
Mutual labels:  echarts
vue-china-map
vue+vuex+axios+echarts画一个动态更新的中国地图
Stars: ✭ 64 (+3.23%)
Mutual labels:  echarts
jh-weapp-demo
微信小程序项目- 实现一些常用效果、封装通用组件和工具类
Stars: ✭ 60 (-3.23%)
Mutual labels:  echarts
yasa
Yet Another Solr Admin
Stars: ✭ 48 (-22.58%)
Mutual labels:  echarts
ping-vue-admin
用vue做的一个后台管理系统模板,可以用此项目作为一个脚手架工程
Stars: ✭ 50 (-19.35%)
Mutual labels:  echarts
GithubProfile
Visualizing GitHub profile
Stars: ✭ 45 (-27.42%)
Mutual labels:  echarts
echarts-extension-amap
🚩 An AMap (https://lbs.amap.com) extension for Apache ECharts (https://github.com/apache/echarts)
Stars: ✭ 180 (+190.32%)
Mutual labels:  echarts
echarts-map-xicheng
Echarts实现北京市西城区各街道地图demo
Stars: ✭ 50 (-19.35%)
Mutual labels:  echarts
dashing
Something beautiful inside and out.
Stars: ✭ 19 (-69.35%)
Mutual labels:  echarts
vue-echarts-v3-demo
Vue.js(v2.x+) component wrap for ECharts.js(v3.x+) demo
Stars: ✭ 52 (-16.13%)
Mutual labels:  echarts
vue-admin-webapp
基于vuejs+element-ui 后台管理系统
Stars: ✭ 62 (+0%)
Mutual labels:  echarts
ECharts.jl
Julia package for the Apache ECharts v4 visualization library
Stars: ✭ 80 (+29.03%)
Mutual labels:  echarts
vue-admin-work
🎉🎉🚀🚀🚀🚀vue-admin-work是一个中后台系统管理方案。使用 vue2.x 及周边全家桶工具开发而来。支持多种功能,不同角色权限🚀🚀🚀🎉🎉
Stars: ✭ 74 (+19.35%)
Mutual labels:  echarts
Real-time-log-analysis-system
🐧基于spark streaming+flume+kafka+hbase的实时日志处理分析系统(分为控制台版本和基于springboot、Echarts等的Web UI可视化版本)
Stars: ✭ 31 (-50%)
Mutual labels:  echarts
vscode-markdown-editor
A vscode extension to make your vscode become a full-featured WYSIWYG markdown editor
Stars: ✭ 249 (+301.61%)
Mutual labels:  echarts
go-tachart
Candlestick chart generator (with event mark and TA indicator) using go-echarts
Stars: ✭ 24 (-61.29%)
Mutual labels:  echarts
vue-echarts-map
Vue版本Echarts中国地图钻取
Stars: ✭ 113 (+82.26%)
Mutual labels:  echarts
ts-vue-questionnaire
微型问卷调查系统 TypeScript 版本,演示账号:admin / admin
Stars: ✭ 89 (+43.55%)
Mutual labels:  echarts

graph modularity extension for Apache ECharts

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
import * as echarts from 'echarts';
import 'echarts-graph-modularity';

NOTE:

V2.x is for ECharts 5.x

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
        }

        ...
    }]
})
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].