import json file to create a network in vis.js

后端 未结 1 610
北荒
北荒 2021-01-03 03:15

I am using vis.js to create a mapping, I using file saveAndLoad.html in the example code. The save function is good, I can export json file. But when I load the json file in

1条回答
  •  迷失自我
    2021-01-03 03:28

    I searched quite a bit for a solution to the obstensively simple task of loading an external JSON datafile into a vis.js Network. Here is a working solution.

    Read my comments in the HTML file (below), for more information:

    • I installed vis.js via NPM, but you can also just download / source the vis.min.js file;

    • The code provided by visjs.org in the "full options" tab for the Network module edge options was buggy, due to extra commas, etc. I included a working copy in my HTML code (ditto re: the "physics" options).

    • As noted in the comments in my HTML file, the formatting of the JSON datafile is very particular: use double quotation marks; curly braces { } are not quoted (e.g., if you want to define per-edge attributes, in that file); ....

    json_test.html

    
    
    
      
      [vis.js] Network | Basic Usage | TEST: Load External JSON Datafile
    
      
      
      
    
      
      
    
      
      
      
    
      
    
    
    
    
    

    test.json

    {"nodes":[
      {"id":"1", "label":"Node 1"}
      ,{"id":"2", "label":"Node 2\nline 2"}
      ,{"id":"3", "label":"Node 3"}
      ,{"id":"4", "label":"Node 4"}
      ,{"id":"5", "label":"Node 5"}
    ],
    "edges":[
      {"from":"1", "to":"2", "label":"apples"}
      ,{"from":"1", "to":"3", "label":"bananas"}
      ,{"from":"2", "to":"4", "label":"cherries"}
      ,{"from":"2", "to":"5", "label":"dates"}
      ,{"from":"2", "to":"3", "label":"EAGLES!", "color":{"color":"green", "highlight":"blue"}, "arrows":{"to":{"scaleFactor":"1.25", "type":"circle"}}}
    ]
    }
    

    Output

    0 讨论(0)
提交回复
热议问题