次のコードがあります
var title = 'hello<sup>2</sup>';
現在、Google チャート2
を使用しており、上付き文字として表示したいと考えています。
私は得る
hello<sup>2</sup>
タイトルのコードは
<text text-anchor="start" x="148" y="52.9" font-family="Arial" font-size="14" font-weight="bold" stroke="none" stroke-width="0" fill="#000000">Hello<sup>2</sup></text>
これはsvgにあります、今私は試しました、次の
var title = 'hello<text style="vertical-align: super">2</text>';
しかし、私は得る
hello<text style="vertical-align: super">2</text>
どうすれば2
上付き文字を付けることができますか?