var stroke=this.property('stroke'); return '<g '+this.writeCommonAttrs()+'>' + '<path style="stroke:'+stroke.color+';stroke-width:'+stroke.width+';fill:none;" d="' + "M"+this.start.x+","+this.start.y+" " + "Q"+this.control.x+","+this.control.y+" " + this.end.x+","+this.end.y + '" />' + '<text style="fill:'+stroke.color+';text-anchor:'+this.textAlign+'" font-weight="bold" ' + 'x="' + this.textPosition.x + '" ' + 'y="' + this.textPosition.y + '">' + this.property('label') + '</text>' + '</g>';