anychart.onDocumentReady(function () {
var dataTable = anychart.data.table();
dataTable.addData(get_csco_daily_short_data());
var mapping = dataTable.mapAs({value: 4});
var chart = anychart.stock();
var plot = chart.plot(0);
plot.line(mapping).name("CSCO");
plot.eventMarkers({"groups": [
"description": "Cisco announced the acquisition of Audium Corporation.",
"short_desc": "Audium Corporation Acquisition"
"description": "Cisco announced its intent to acquire PostPath, Inc.",
"short_desc": "PostPath Acquisition"
"description": "Cisco and Tata Consultancy Services announced strategic alliance.",
"short_desc": "Alliance with TCS"
"description": "Cisco unveiled 'Intelligent Urbanisation' vision for Bangalore.",
"short_desc": "Intelligent Urbanisation"
plot.eventMarkers().tooltip().titleFormat("{%short_desc} ({%symbol})");
plot.eventMarkers().tooltip().format("Event: {%description}");
chart.title("Event Markers: Tooltips (Tokens)");
chart.container("container");