123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <!doctype html>
- <html>
- <head>
- <title>Neovis.js Simple Example</title>
- <style type="text/css">
- html, body {
- font: 16pt arial;
- }
- #viz {
- width: 900px;
- height: 700px;
- border: 1px solid lightgray;
- font: 22pt arial;
- }
- </style>
- <!-- FIXME: load from dist -->
- <script type="text/javascript" src="https://rawgit.com/johnymontana/neovis.js/master/dist/neovis.js"></script>
- <script
- src="https://code.jquery.com/jquery-3.2.1.min.js"
- integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
- crossorigin="anonymous"></script>
- <script type="text/javascript">
- // define config car
- // instantiate nodevis object
- // draw
- var viz;
- function draw() {
- var config = {
- container_id: "viz",
- server_url: "bolt://localhost:7687",
- server_user: "neo4j",
- server_password: "letmein",
- labels: {
- "Tweet": {
- "caption": "text",
- "size": "retweets",
- "community": "community"
- },
- "Troll": {
- "caption": "screen_name",
- "size": "pagerank",
- "community": "community"
- }
- //"sizeCypher": "MATCH (n) WHERE id(n) = {id} MATCH (n)-[r]-() RETURN sum(r.weight) AS c"
- },
- relationships: {
- "AMPLIFIED": {
- "thickness": "count",
- "caption": false
- }
- },
- initial_cypher: "MATCH (n:Troll)-[r:AMPLIFIED]->(m:Troll) RETURN n,r,m LIMIT 500"
- };
- viz = new NeoVis.default(config);
- viz.render();
- console.log(viz);
- }
- </script>
- </head>
- <body onload="draw()">
- <div id="viz"></div>
- Cypher query: <textarea rows="4" cols=50 id="cypher"></textarea><br>
- <input type="submit" value="Submit" id="reload">
- <input type="submit" value="Stabilize" id="stabilize">
- </body>
- <script>
- $("#reload").click(function () {
- var cypher = $("#cypher").val();
- if (cypher.length > 3) {
- viz.renderWithCypher(cypher);
- } else {
- console.log("reload");
- viz.reload();
- }
- });
- $("#stabilize").click(function () {
- viz.stabilize();
- })
- </script>
- </html>
|