I am making an SVG which has text along a circular line path.
The text looks great in Firefox and Chrome, but doesn't look right in IE11. Only the first letter on the text path appears, sometimes.
Here's the fiddle.
d3.select("#svg")
.append("path")
.attr("id", "path1")
.attr("d", "M 0,-1 C 0.5523, -1 1, -0.5523 1,0 C 1, 0.5523 0.5523, 1 0,1 C -0.5523, 1 -1, 0.5523 -1,0 C -1, -0.5523 -0.5523, -1 0,-1")
.attr("transform", "scale(50, 50) translate(5,5)");
d3.select("#svg")
.append("text")
.append("textPath")
.attr("xlink:href", "#path1")
.style("font-size", "10px")
.text("hello radial world")
.attr("fill", "blue")