简体   繁体   中英

Pie Chart Label

my pie chart displays perfectly but my labels are placed where they are but not good positioned because they lap on the chart halfway this is my code

 function getStatPie(){ $.ajax({ type: "GET", url: "/Dashboard/GetDashboardStatPie", contentType: "application/json", success: function (data) { //console.log(data.result); var statResult = data.result; if (statResult != null) { if (statResult.totalPaymentChartStat != null) { getPieChart(statResult.totalPaymentChartStat); } $('.loader-wrapper').addClass('hidden'); } }, error: function () { $('.loader-wrapper').addClass('hidden'); abp.notify.error("An error occurred while retrieving Dashboard Pie Chart stats. Contact support", "Error"); abp.ui.clearBusy(); } }); } function getPieChart(rawData) { $.plot($("#Pie_Chart"), rawData, { series: { pie: { show: true, resize: true, radius: 1, series: [{ argumentField: "Branch", valueField: "Number", label: { visible: true, customizeText: function (arg) { return arg.argumentText + " (" + arg.percentText + ")"; } } }] } }, legend: { show: false } }); }
 <!-- Pie Chart --> <div class="col-lg-7 col-md-7 col-sm-12 col-xs-12 "> <div id="Pie_Chart" style="width:400px;height:260px; "></div> </div>

this is the image of my pie chart and how it looks with data populated into it, I want the label to not be on the pie and be clear someone help

在此处输入图片说明

我改变radius: 1, radius: 4/5,如果大小仍然不是你不断改变半径

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM