anychart.onDocumentReady(function () {
var chart = anychart.marker(data);
chart.title("Multi-hover feature");
chart.getSeries(0).hovered().fill({color: "Yellow"});
chart.interactivity().hoverMode("by-spot");
chart.interactivity().spotRadius(70);
chart.container("container");