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().data([
"description": "Cisco announced the acquisition of Audium Corporation."
"description": "Cisco announced its intent to acquire PostPath, Inc."
chart.title("Event Markers: Data\ndata()");
chart.container("container");