anychart.onDocumentReady(function () {
var dataTable = anychart.data.table();
dataTable.addData(get_csco_daily_short_data());
mapping = dataTable.mapAs({'value': 5});
var chart = anychart.stock();
chart.plot(0).yAxis(1).enabled(true);
chart.plot(0).yAxis(1).orientation('right');
lineSeries = chart.plot(0).line(mapping);
indicator1 = chart.plot(0).priceIndicator(0);
indicator2 = chart.plot(0).priceIndicator(1, {axis: chart.plot(0).yAxis(1), value: 'last-visible'});
chart.title("Price Indicator: Axis to Show On");
chart.padding().left(75).right(75);
chart.container("container");