anychart.onDocumentReady(function () {
var dataTable = anychart.data.table();
dataTable.addData(get_dji_daily_short_data());
var data1 = dataTable.mapAs({value: 1});
var data2 = dataTable.mapAs({value: 3});
var chart = anychart.stock();
chart.padding(10, 10, 10, 100);
var plot1 = chart.plot(0);
var plot1YScale = plot1.yScale();
plot1YScale.comparisonMode('percent');
var plot2 = chart.plot(1);
chart.title('First plot: set date for the changes zero of the series \n Second plot: date without changes zero of the series');
chart.container('container');