anychart.onDocumentReady(function () {
var chart = anychart.column();
var series = chart.column([
{x: 0, open: 611, value: 214},
{x: 1, open: 606, value: 413},
{x: 2, open: 612, value: 315},
{x: 3, open: 611, value: 500}
var rendering = series.rendering();
rendering.yValues(['open', 'value']);
chart.title('Set Y values');
chart.container('container');
var shapes = this.getShapesGroup(this.pointState);
var leftX = this.x - this.pointWidth / 2;
var rightX = leftX + this.pointWidth;
.moveTo(leftX, this.zero)
.lineTo(this.x, this.value)
.lineTo(rightX, this.zero)