1
我正在使用angular-nvd3創建圖表 當我嘗試顯示標籤的圖標時出現問題。Unicode標籤不顯示爲Fontawesome圖標
$scope.data = [
{
"key": "Series2",
"values": [
{
"label" : '',
"value" : 0.56
} ,
{
"label" : "" ,
"value" : 0.20
} ,
{
"label" : "" ,
"value" : 0.10
}
]
}
]
但是,當它顯示在圖表上有一個統一的標籤:
<text dy=".32em" x="-5" y="0" style="text-anchor: end;">&#xf015;</text>
&#xf015;
這就是它的實際顯示的HTML,但它應該顯示
任何人有這方面的經驗?或者我有什麼想法?謝謝 這裏是plnkr網址:http://plnkr.co/edit/PygsTn?p=preview
我剛纔已經回答同樣的問題(如果我理解正確):您正在使用一個HTML實體,這在SVG中不起作用。用Unicode代替,看看這裏的答案:http://stackoverflow.com/questions/38956615/untrusted-html-in-d3-js-v4-and-angularjs/38958019#38958019 –
我也發現它。非常感謝。 –