anychart.onDocumentReady(function () {
anychart.data.loadJsonFile('https://static.anychart.com/git-storage/word-press/data/network-graph-tutorial/data_images.json', function (data) {
var chart = anychart.graph(data);
chart.title('Network Graph showing the battles in Game of Thrones');
var nodes = chart.nodes();
nodes.normal().height(30);
nodes.hovered().height(45);
nodes.selected().height(45);
nodes.normal().stroke(null);
nodes.hovered().stroke('#333333', 3);
nodes.selected().stroke('#333333', 3);
chart.nodes().labels().enabled(true);
chart.nodes().labels().format('{%id}');
chart.nodes().labels().fontSize(12);
chart.nodes().labels().fontWeight(600);
chart.container('container').draw();