anychart.onDocumentReady(function () {
var dataTable = anychart.data.table();
dataTable.addData(get_dji_daily_short_data());
var mapping = dataTable.mapAs({value: 1});
chart = anychart.stock();
var plot1 = chart.plot();
var controller = plot1.annotations();
secondXAnchor: 1131408000000,
secondValueAnchor: 12000,
var plot2 = chart.plot(1);
var json = controller.toJson(true);
var annotation = plot2.annotations();
annotation.fromJson(json);
chart.title('Create and read config from JSON string');
chart.container('container');