SVG特殊字符,如<sup> 2 </sup>或&amp; $ 178;或²

时间:2012-06-14 13:54:01

标签: unicode svg special-characters highcharts

我试图在SVG上放置没有结果的特殊字符( 2 )( - &gt;&amp;#178;)。有没有办法在SVG上放置unicode字符?

以下是使用highcharts 2.1.6

的示例代码
<div id="container" style="height: 300px"></div>​

$(function() {
    var renderer = new Highcharts.Renderer(
    $('#container')[0],
    400,
    300);
    renderer.text(100, 100, 100, 100, 5).attr({
        'stroke-width': 2,
        zIndex: 3,
        rotation: 170,
        text: 'sdfsdf&#178;'
    }).add();
});​

非常感谢。

0 个答案:

没有答案