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");
var eventMarkers = plot.eventMarkers();
plot.eventMarkers({"groups": [
"description": "Cisco announced the acquisition of Audium Corporation."
"description": "Cisco announced its intent to acquire PostPath, Inc."
eventMarkers.connector().length("20");
eventMarkers.normal().connector().stroke("#dd2c00");
eventMarkers.hovered().connector().stroke("#dd2c00", 2);
eventMarkers.selected().connector().stroke("#dd2c00", 3);
chart.title("Event Markers: Connectors");
chart.container("container");