anychart.onDocumentReady(function () {
var chart = anychart.line();
var series = chart.column(data);
chart.xAxis().title("Manager");
chart.yAxis().title("Sales, $");
chart.listen("mouseOver", function(e){
document.body.style.cursor = "pointer";
chart.listen("mouseOut", function(e){
document.body.style.cursor = "auto";
chart.listen("pointsHover", function(e){
var name = e.point.getStat("categoryName");
chart.listen("pointsSelect", function(e){
var value = e.point.getStat("value");
chart.title("$" + value);
chart.listen("pointDblClick", function(e){
var name = e.point.getStat("categoryName");
var value = e.point.getStat("value");
chart.title(name + ": $" + value);
chart.container("container");