anychart.onDocumentLoad(function() {
var stage = acgraph.create('container');
var chart1 = anychart.graph();
chart1.title().enabled(true).text('Edges interactivity is disabled. \n One path for all edges. \n Edge\'s tooltip is unavailable.');
chart1.bounds(0, 0, '50%', '100%');
chart1.interactivity().edges(false);
var chart2 = anychart.graph(data);
chart2.title().enabled(true).text('Edges interactivity is enabled. \n Each edge has own path. \n Edge\'s tooltip works fine.');
chart2.bounds('50%', 0, '50%', '100%');
chart2.interactivity().edges(true);
chart2.container(stage).draw();
chart1.container(stage).draw();