anychart.onDocumentReady(function() {
{id:'Kate Austin', height: '30', fill: '#64b5f6'},
{id:'Jack Austin', height: '30', fill: '#64b5f6'},
{id:'Sophie Lilly', height: '30', fill: '#64b5f6'},
{id: 'Elsie Mcbride', height: '20', fill: '#64b5f6'},
{from: 'Kate Austin', to:'Reece Gray'},
{from: 'Kate Austin', to:'Darren Burch'},
{from: 'Kate Austin', to:'Leslie Bailey'},
{from: 'Kate Austin', to:'Nova Fisher'},
{from: 'Kate Austin', to:'Jack Austin'},
{from: 'Jack Austin', to:'Jamie Montoya'},
{from: 'Jack Austin', to:'Sawyer Mack'},
{from: 'Jack Austin', to:'Hugo Love'},
{from: 'Jack Austin', to:'Sophie Lilly'},
{from: 'Jack Austin', to:'Elsie Mcbride'},
{from: 'Elsie Mcbride', to:'Jude Mcbride'},
{from: 'Sophie Lilly', to:'Ivy Mcintyre'},
{from: 'Sophie Lilly', to:'Evie West'},
var chart = anychart.graph(data);
chart.title("Relationship Graph");
chart.nodes().labels().enabled(true);
chart.nodes().labels().fontSize(12);
chart.nodes().normal().fill("white");
chart.nodes().normal().stroke("1 black");
chart.nodes().shape('circle');
chart.nodes().hovered().fill("white");
chart.nodes().hovered().stroke("2 black");
chart.nodes().hovered().shape('circle');
chart.layout().type('force');
chart.container('container').draw();