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.",
"normal": {"type": "circle",
"fill": "#d1ead9", "stroke": "2 #009933",
"fontColor": "#009933", "fontWeight": 600,
"connector": {"stroke": "2 #009933"}},
"hovered": {"fill": "white", "stroke": "2 #009933",
"connector": {"stroke": "2 #009933"}},
"selected": {"fill": "white", "stroke": "2 #194d00",
"connector": {"stroke": "2 #194d00"}}
"description": "Cisco announced its intent to acquire PostPath, Inc.",
"normal": {"type": "rect", "width": 40,
"fill": "#ead9d1", "stroke": "2 #990033",
"fontColor": "#990033", "fontWeight": 600,
"connector": {"stroke": "2 #990033"}},
"hovered": {"fill": "white", "stroke": "2 #990033",
"connector": {"stroke": "2 #990033"}},
"selected": {"fill": "white", "stroke": "2 #4d1a00",
"connector": {"stroke": "2 #4d1a00"}}
plot.eventMarkers().format(function() {
return this.getData("symbol");
chart.title("Event Markers: Individual Markers");
chart.container("container");