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();
chart.padding(10, 10, 10, 50);
var series = plot.stepLine(mapping);
series.hoverStroke("#C5E1A5");
var hoverStroke = series.hoverStroke();
chart.title({fontColor: hoverStroke, text: "Get and use hover stroke. Hover on the legend."});
chart.container("container");