SVG に特殊文字 ( 2 ) ( --> ² ) を適用しようとしていますが、結果はありません。SVG にユニコード文字を配置する方法はありますか?
これは、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²'
    }).add();
});
どうもありがとう。