anychart.onDocumentReady(function () {
var chart = anychart.column();
var series = chart.line([
{x: 'January', value: 2},
{x: 'February', value: 5},
var rendering = series.rendering();
rendering.needsZero(true);
rendering.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);