anychart.onDocumentReady(function () {
var chart = anychart.column();
var series = chart.line([10, 20, 15, 30, 9]);
var currentRendering = series.rendering();
currentRendering.point(drawer);
currentRendering.needsZero(true);
chart.title("Enable zero value for the series");
chart.container("container");
var shapes = this.getShapesGroup(this.pointState);
.moveTo(this.x, this.zero)
.lineTo(this.x, this.value - 70)
.lineTo(this.x + 50, this.value - 40)
.lineTo(this.x, this.value)
.lineTo(this.x + 50, this.value + 30)
.close(this.x, this.zero);