我有一張nvd3餅圖。我正在獲取百分比值作爲標籤,但我希望它在工具提示中。下面是HTML:如何獲取nvd3餅圖工具提示中的百分比?
<nvd3-pie-chart data="Data1"id="labelTypePercentExample"
width="550"
height="350"
x="xFunction()"
y="yFunction()"
showLabels="true"
pieLabelsOutside="false"
tooltips="true"
tooltipcontent="toolTipContentFunction()"
labelType="percent"
showLegend="true">
</nvd3-pie-chart>
DATA
Data1=[{ key: "Ongoing", y: 20 },
{ key: "completed", y: 0 }];
這裏是表示密鑰作爲工具提示數據工具提示功能。
$scope.toolTipContentFunction = function(){
return function(key, x, y, e, graph) {
return '<h1>' + key + '</h1>'
}
}
請您詳細說明您的答案,並在上面提供您所提供的解決方案的更多描述。 – abarisone