Hi,
I'm creating an SVG path using the Raphael library and the following code:
this.resultsBoxLine1 = paper.path("M42 10L42 36");
I would like to use variables to dictate the position of the path, however I cannot write like this:
this.resultsBoxLine1 = paper.path("MmyVar11 myVar2LmyVar3 myVar4");
Does anybody know how I can do this?