anychart.onDocumentReady(function () {
var dataTable = anychart.data.table();
dataTable.addData(get_dji_daily_short_data());
var firstMapping = dataTable.mapAs({value: 1});
var secondMapping = dataTable.mapAs({value: 3});
var chart = anychart.stock();
chart.padding(10, 10, 10, 100);
var firstPlot = chart.plot(0);
firstPlot.line(firstMapping);
firstPlot.line(secondMapping);
var firstPlotYScale = firstPlot.yScale();
firstPlotYScale.comparisonMode(anychart.enums.ScaleComparisonMode.PERCENT);
var secondPlot = chart.plot(1);
secondPlot.line(firstMapping);
secondPlot.line(secondMapping);
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");