Last active
July 20, 2016 18:25
-
-
Save phillipkregg/732357ae43a72fb496e96baa7e4dbe71 to your computer and use it in GitHub Desktop.
Vis Integration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
didInsertElement: function() { | |
// create an array with nodes | |
var nodes = new vis.DataSet([ | |
{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'} | |
]); | |
// create an array with edges | |
var edges = new vis.DataSet([ | |
{from: 1, to: 3}, | |
{from: 1, to: 2}, | |
{from: 2, to: 4}, | |
{from: 2, to: 5} | |
]); | |
// create a network | |
var container = document.getElementById('mynetwork'); | |
// provide the data in the vis format | |
var data = { | |
nodes: nodes, | |
edges: edges | |
}; | |
var options = {}; | |
// initialize your network! | |
var network = new vis.Network(container, data, options); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember and Vis: Network View' | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
import config from './config/environment'; | |
const Router = Ember.Router.extend({ | |
location: 'none', | |
rootURL: config.rootURL | |
}); | |
Router.map(function() { | |
}); | |
export default Router; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Route.extend({ | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
margin: 12px 16px; | |
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; | |
font-size: 12pt; | |
} | |
#mynetwork { | |
width: 600px; | |
height: 400px; | |
border: 1px solid lightgray; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.10.1", | |
"EmberENV": { | |
"FEATURES": {} | |
}, | |
"options": { | |
"use_pods": false, | |
"enable-testing": false | |
}, | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js", | |
"ember": "2.6.0", | |
"ember-data": "2.6.1", | |
"ember-template-compiler": "2.6.0", | |
"vis": "https://cdnjs.cloudflare.com/ajax/libs/vis/4.16.1/vis.min.js", | |
"vis-css": "https://cdnjs.cloudflare.com/ajax/libs/vis/4.16.1/vis.min.css" | |
}, | |
"addons": {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment