Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anishmprasad/vis-react-native
https://github.com/anishmprasad/vis-react-native
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/anishmprasad/vis-react-native
- Owner: anishmprasad
- License: mit
- Created: 2018-12-31T07:04:27.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-31T11:20:27.000Z (almost 6 years ago)
- Last Synced: 2024-03-26T17:22:25.815Z (8 months ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vis-react
A React component to display beautiful network graphs using vis.js
Make sure to visit [visjs.org](http://visjs.org) for more info.
Rendered graphs are scrollable, zoomable, retina ready, dynamic, and switch layout on double click.
Due to the imperative nature of vis.js, updating graph properties causes complete redraw of graph and completely porting it to React is a big project itself!
This component takes three vis.js configuration objects as properties:
- graph: contains two arrays { edges, nodes }
- options: normal vis.js options as described [here](http://visjs.org/docs/network/#options)
- events: an object that has [event name](http://visjs.org/docs/network/#Events) as keys and their callback as values## Load
To use a component, include the javascript and css files of vis in your root html:
```html
// ... load a visualization
```
or load vis.js using require.js. Note that vis.css must be loaded too.
# Usage
```javascript
var Graph = require('vis-react');var graph = {
nodes: [
{ id: 1, label: 'Node 1' },
{ id: 2, label: 'Node 2' },
{ id: 3, label: 'Node 3' },
{ id: 4, label: 'Node 4' },
{ id: 5, label: 'Node 5' }
],
edges: [{ from: 1, to: 2 }, { from: 1, to: 3 }, { from: 2, to: 4 }, { from: 2, to: 5 }]
};var options = {
layout: {
hierarchical: true
},
edges: {
color: '#000000'
}
};var events = {
select: function(event) {
var { nodes, edges } = event;
}
};React.render(, document.body);
```### UNDER DEVELOPMENT