anychart.onDocumentReady(function () {
{from: "Richard", to: "Larry"},
{from: "Richard", to: "Marta"},
{from: "Larry", to: "Marta"},
{from: "Marta", to: "Jane"},
{from: "Jane", to: "Norma"},
{from: "Jane", to: "Frank"},
{from: "Jane", to: "Brett"},
{from: "Brett", to: "Frank"}
var chart = anychart.graph(data);
chart.interactivity().zoomOnMouseWheel(false);
var nodes = chart.nodes();
nodes.normal().height(40);
nodes.hovered().height(55);
nodes.selected().height(55);
nodes.normal().shape("star5");
nodes.normal().fill("#ffa000");
nodes.hovered().fill("white");
nodes.selected().fill("#ffa000");
nodes.normal().stroke(null);
nodes.hovered().stroke("#ffa000", 3);
nodes.selected().stroke("#333333", 3);
chart.title("Network Graph: Nodes");
chart.container("container");