anychart.onDocumentReady(function () {
var dataTable = anychart.data.table();
dataTable.addData(get_csco_daily_short_data());
mapping = dataTable.mapAs({open: 1, high: 2, low: 3, close: 4});
chart = anychart.stock();
chart.title("Labels: Minimum and Maximum");
chart.padding().left(80);
var series = chart.plot(0).ohlc(mapping);
series.minLabels().format("{%Low}");
series.maxLabels().position("open");
series.minLabels().position("center-bottom");
chart.container("container");