Really basic SVG question. I have read
SVG sprite in external file
and it works fine for me to add a svg graphic, but I can\'t get it to work with defs. First the f
xlink:href="defs.svg#patternDefs" should be xlink:href="defs.svg#pattern1"
On top of that has to point to something to be rendered, not a pattern. If you want to fill a circle with a pattern just set the circle's fill to the pattern. E.g.
Note that external fills are not widely supported, although they do work on Firefox for instance.