All Projects → r3code → vue-vis-network

r3code / vue-vis-network

Licence: MIT license
Vue 2 integration with https://github.com/visjs/vis-network/

Programming Languages

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

Projects that are alternatives of or similar to vue-vis-network

nodesoup
Force-directed graph layout with Fruchterman-Reingold
Stars: ✭ 40 (-29.82%)
Mutual labels:  graph-visualization
vueNotification
Notification plugin for VuesJS
Stars: ✭ 52 (-8.77%)
Mutual labels:  vuejs-components
gradoop demo
Demo application for GRADOOP operators
Stars: ✭ 21 (-63.16%)
Mutual labels:  graph-visualization
multigraph
multigraph: Plot and Manipulate Multigraphs in R
Stars: ✭ 18 (-68.42%)
Mutual labels:  graph-visualization
go-graph-layout
🔮 Graph Layout Algorithms in Go
Stars: ✭ 70 (+22.81%)
Mutual labels:  graph-visualization
steamap
Interactive Steam Friends map.
Stars: ✭ 41 (-28.07%)
Mutual labels:  visjs
NetworkLayout.jl
Layout algorithms for graphs and trees in pure Julia.
Stars: ✭ 82 (+43.86%)
Mutual labels:  graph-visualization
ngx-vis
An angular 5+ vis.js project
Stars: ✭ 59 (+3.51%)
Mutual labels:  vis-network
jungrapht-visualization
visualization and sample code from Java Universal Network Graph ported to use JGraphT models and algorithms
Stars: ✭ 37 (-35.09%)
Mutual labels:  graph-visualization
lynxkite
The complete graph data science platform
Stars: ✭ 120 (+110.53%)
Mutual labels:  graph-visualization
vuelendar
Simple and clean calendar written in Vue.js
Stars: ✭ 76 (+33.33%)
Mutual labels:  vuejs-components
noflo-graphviz
NoFlo visualization tools for GraphViz
Stars: ✭ 14 (-75.44%)
Mutual labels:  graph-visualization
vue3-openlayers
Web map Vue 3.x components with the power of OpenLayers
Stars: ✭ 320 (+461.4%)
Mutual labels:  vuejs-components
grasp
Essential NLP & ML, short & fast pure Python code
Stars: ✭ 58 (+1.75%)
Mutual labels:  graph-visualization
graphi
🌠 An interactive network analysis & visualization tool
Stars: ✭ 20 (-64.91%)
Mutual labels:  graph-visualization
GNNLens2
Visualization tool for Graph Neural Networks
Stars: ✭ 155 (+171.93%)
Mutual labels:  graph-visualization
vue-table-for
Easily build a table for your records
Stars: ✭ 33 (-42.11%)
Mutual labels:  vuejs-components
cloudgram
Generate diagrams for your cloud architecture using code
Stars: ✭ 68 (+19.3%)
Mutual labels:  diagram-generator
ts-depgraph
Generate a visually stunning dependency graph from your Angular or Typescript project
Stars: ✭ 24 (-57.89%)
Mutual labels:  visjs
GraphPlot.jl
Graph visualization for Julia.
Stars: ✭ 171 (+200%)
Mutual labels:  graph-visualization

vue-vis-network

!!! NOTE !!! Hi developer. Please contribute to the project if you find a bug or suggest an improvement / feature. Because I’m very, very busy these days, and it won’t end in the next 2-4 months. Hope you can do it faster than me )

Vue2 component to integrate with Vis-Network views

Build Status Coverage Status Software License Packagist Latest Version Issues

Best reagrds to the https://github.com/alexcode/vue2vis which is the base for this component. This project might have some issues from https://github.com/alexcode/vue2vis

Installation

npm install --save vis-util vis-data vis-network vue-vis-network

or

yarn add vis-util vis-data vis-network vue-vis-network

Usage

Declare the component

import { Network } from "vue-vis-network";
Vue.component('network', Network);

Add the component in the template.

<body>
  <div id="app">
    <network ref="network"
    :nodes="nodes"
    :edges="edges"
    :options="options">
    </network>
  </div>
</body>

Add groups, items and options in your observed data or computed.

new Vue({
  el: '#app',
  data() {
    return {
      nodes: [
        {id: 1,  label: 'circle',  shape: 'circle' },
        {id: 2,  label: 'ellipse', shape: 'ellipse'},
        {id: 3,  label: 'database',shape: 'database'},
        {id: 4,  label: 'box',     shape: 'box'    },
        {id: 5,  label: 'diamond', shape: 'diamond'},
        {id: 6,  label: 'dot',     shape: 'dot'},
        {id: 7,  label: 'square',  shape: 'square'},
        {id: 8,  label: 'triangle',shape: 'triangle'},
      ],
      edges: [
        {from: 1, to: 2},
        {from: 2, to: 3},
        {from: 2, to: 4},
        {from: 2, to: 5}, 
        {from: 5, to: 6},
        {from: 5, to: 7},
        {from: 6, to: 8}
      ],
      options: {
         nodes: {
          borderWidth: 4
         },
         edges: {
          color: 'lightgray'
        }
      }
    }
  },
});

Add Visjs CSS

import "vue-vis-network/node_modules/vis-network/dist/vis-network.css";

Here is a basic working demo

Events

Component Events

By default all Vis-network events are emitted by your component. You can subscribe to a subset by passing an array in the prop events Vis-network event.

<body>
  <div id="app">
    <network ref="network"
    :nodes="nodes"
    :edges="edges"
    :options="options"
    :events="['selectNode', 'hoverNode']"
    @select-node="onNodeSelected"
    @hover-node="onNodeHovered">
    </network>
  </div>
</body>

Data Events

When you pass an Array of data object, it is converted internally as a DataSet. An event with the DataSet object will be fired at mounted. It's name will be prepend with the prop name (Ex: items-mounted, groups-mounted). You could use it to interact with the DataSet.

All the Visjs DataSet event will be prepened the same fashion (items-add, items-remove, items-update). For example, pushing a new object to the items prop will fire a items-add event with the following payload:

{
  event: 'add',
  properties: {
    items: [7],
  },
  senderId: null,
}

Advanced

You can also manage your own data bindings by passing your own DataSet or DataView instead of an Array.

import { DataSet } from 'vue-vis-network';

new Vue({
  el: '#app',
  data() {
    return {
      nodes: new DataSet([
        {id: 1,  label: 'circle',  shape: 'circle' },
        {id: 2,  label: 'ellipse', shape: 'ellipse'},
        {id: 3,  label: 'database',shape: 'database'}
      ]),
      edges: new DataSet([
        {from: 1, to: 2},
        {from: 1, to: 3}
      ]),
      options: {
        nodes: {
          borderWidth: 4
         }
      }
    }
  },
});

Vis-network documentation

For the full reference see:

Change log

Please see CHANGELOG for more information what has changed recently.

Testing

$ npm run test

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Build Setup

# Once you have cloned this repo, install dependencies
$ npm install

# Build for development and production with minification
$ npm run build

Build for production

# Linux
NODE_ENV=production npm run build
# Windows
set NODE_ENV=production && npm run build
# Prepare for NPM
set NODE_ENV=production && npm run build:bundle

Run demo locally

# install vue-vis-network local module  
cd ..  
npm link       
# prepare example
cd example
# install the example dependencies
npm install 
# add local vue-vis-network module to node_modules
npm link vue-vis-network
# run demo server
npm run serve

Go to http://localhost:8080/ to see running examples

NOTE: If you make changes to the library you should run npm run build again in the root folder. The dev server should detect modification and reload the demo

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

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].