2
我XHTML代碼是:Primefaces餅圖重疊數據標籤
<p:pieChart id="custom"
value="#{facturationbean.pieModelPourcentage}"
legendPosition="e"
showDataLabels="true"
title="Facturation par client en %"
rendered="#{facturationbean.isNull}" extender="ext2"
style=" width: 400px; height: 300px; font-size: medium; " />
<script>
function ext2() {
this.cfg.seriesDefaults.rendererOptions.dataLabelFormatString='%.3s%';
this.cfg.seriesDefaults.rendererOptions.dataLabelThreshold=0.5;
this.cfg.seriesDefaults.rendererOptions.dataLabelPositionFactor= 0.2;
this.cfg.seriesDefaults.rendererOptions.dataLabelCenterOn=false;
}
</script>
如何從我的圖表中刪除這個問題?
歡迎任何建議。