I have misarables.json:
{
"nodes":[
{"name":"Myriel","group":1,"photo":"https://www.facebookbrand.com/img/assets/asset.f.logo.lg.png"},
{"name":"Napoleon","group":1,"photo":"https://www.facebookbrand.com/img/assets/asset.f.logo.lg.png"},
{"name":"Mlle.Baptistine","group":1, "photo":"https://www.facebookbrand.com/img/assets/asset.f.logo.lg.png"}
],
"links":[
{"source":1,"target":0,"value":1},
{"source":2,"target":0,"value":8}
]
}
So, every node has name, group and photo. I use this graph to visualisate that json (json and html in different files). How I need to change js, to show photos in circles in that graph?
Thanks.