anychart.onDocumentReady(function () {
var dataTable = anychart.data.table();
dataTable.addData(get_dji_daily_short_data());
var mapping = dataTable.mapAs({value: 1});
var chart = anychart.stock();
secondXAnchor: '2008-03-02',
chart.listen('annotationSelect', function () {
return chart.title('The annotation is selected')
chart.listen('annotationUnselect', function () {
return chart.title('The annotation is deselected')
chart.title('Select an annotation/Deselect a selected annotation');
chart.container('container');