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