anychart.onDocumentReady(function () {
var dataSet = anychart.data.set([
var chart = anychart.line();
chart.title("Click on Chart and Go to Google");
var xAxis = chart.xAxis();
xAxis.staggerMode(false);
chart.listen("mouseDown", function() {
window.open("https://google.com","_blank");
chart.container("container");