Stroke width is hard-coded. https://github.com/otm/svg.path.js/blob/6981166831ac663cf5e43d492b3c0266365ca829/svg.path.js#L167 Next should resolve the problem. ``` var length = this.length(), width = this.attr('stroke-width'); this.stroke({ width: width ? width : 2, dasharray: length + ' ' + length, dashoffset: length }); ```