anychart.onDocumentReady(function () {
var chart = anychart.column([
{x: "Thesis", value: 1770},
{x: "Antithesis", value: 1807},
{x: "Synthesis", value: 1831}
labels = chart.getSeries(0).labels();
labels.position("center-top");
labels.anchor("left-center");
chart.title("Labels position");
chart.container("container");