How to display pie chart data values of each slice in chart.js

匿名 (未验证) 提交于 2019-12-03 03:05:02

问题:

I am using Chart.js for drawing pie chart in my php page.I found tooltip as showing each slice values.

But I wish to display those values like below image.

I do not know how to do this with chart.js.

Please help me.

My Javascript code:

function drawPie(canvasId,data,legend){     var ctx = $("#pie-canvas-" + canvasId).get(0).getContext("2d");      var piedata = [];     $.each(data,function(i,val){         piedata.push({value:val.count,color:val.color,label:val.status});     });     var options =     {         tooltipTemplate: "%",     }     var pie = new Chart(ctx).Pie(piedata,options);     if(legend)document.getElementById("legend").innerHTML = pie.generateLegend(); } 

php code:

printf(''); echo '
'; echo '';

回答1:

From what I know I don't believe that Chart.JS has any functionality to help for drawing text on a pie chart. But that doesn't mean you can't do it yourself in native JavaScript. I will give you an example on how to do that, below is the code for drawing text for each segment in the pie chart:

function drawSegmentValues() {     for(var i=0; i

A Pie Chart has an array of segments stored in PieChart.segments, we can look at the startAngle and endAngle of these segments to determine the angle in between where the text would be middleAngle. Then we would move in that direction by Radius/2 to be in the middle point of the chart in radians.

In the example above some other clean-up operations are done, due to the position of text drawn in fillText() being the top right corner, we need to get some offset values to correct for that. And finally textSize is determined based on the size of the chart itself, the larger the chart the larger the text.

Fiddle Example


With some slight modification you can change the discrete number values for a dataset into the percentile numbers in a graph. To do this get the total value of the items in your dataset, call this totalValue. Then on each segment you can find the percent by doing:

Math.round(myPieChart.segments[i].value/totalValue*100)+'%'; 

The section here myPieChart.segments[i].value/totalValue is what calculates the percent that the segment takes up in the chart. For example if the current segment had a value of 50 and the totalValue was 200. Then the percent that the segment took up would be: 50/200 => 0.25. The rest is to make this look nice. 0.25*100 => 25, then we add a % at the end. For whole number percent tiles I rounded to the nearest integer, although can can lead to problems with accuracy. If we need more accuracy you can use .toFixed(n) to save decimal places. For example we could do this to save a single decimal place when needed:

var value = myPieChart.segments[i].value/totalValue*100; if(Math.round(value) !== value)     value = (myPieChart.segments[i].value/totalValue*100).toFixed(1); value = value + '%'; 

Fiddle Example of percentile with decimals

Fiddle Example of percentile with integers



回答2:

For Chart.js 2.0 and up, the Chart object data has changed. For those who are using Chart.js 2.0+, below is an example of using HTML5 Canvas fillText() method to display data value inside of the pie slice. The code works for doughnut chart, too, with the only difference being type: 'pie' versus type: 'doughnut' when creating the chart.

Script:

Javascript

var data = {     datasets: [{         data: [             11,             16,             7,             3,             14         ],         backgroundColor: [             "#FF6384",             "#4BC0C0",             "#FFCE56",             "#E7E9ED",             "#36A2EB"         ],         label: 'My dataset' // for legend     }],     labels: [         "Red",         "Green",         "Yellow",         "Grey",         "Blue"     ] };  var pieOptions = {   events: false,   animation: {     duration: 500,     easing: "easeOutQuart",     onComplete: function () {       var ctx = this.chart.ctx;       ctx.font = Chart.helpers.fontString(Chart.defaults.global.defaultFontFamily, 'normal', Chart.defaults.global.defaultFontFamily);       ctx.textAlign = 'center';       ctx.textBaseline = 'bottom';        this.data.datasets.forEach(function (dataset) {          for (var i = 0; i 

HTML

jsFiddle



回答3:

I found an excellent Chart.js plugin that does exactly what you want: https://github.com/emn178/Chart.PieceLabel.js



回答4:

You can make use of PieceLabel plugin for Chart.js.

{ pieceLabel: { mode: 'percentage', precision: 2 } }

Demo | Documentation



回答5:

@Hung Tran's answer works perfect. As an improvement, I would suggest not showing values that are 0. Say you have 5 elements and 2 of them are 0 and rest of them have values, the solution above will show 0 and 0%. It is better to filter that out with a not equal to 0 check!

          var val = dataset.data[i];           var percent = String(Math.round(val/total*100)) + "%";            if(val != 0) {             ctx.fillText(dataset.data[i], model.x + x, model.y + y);             // Display percent in another line, line break doesn't work for fillText             ctx.fillText(percent, model.x + x, model.y + y + 15);           } 

Updated code below:

var data = {     datasets: [{         data: [             11,             16,             7,             3,             14         ],         backgroundColor: [             "#FF6384",             "#4BC0C0",             "#FFCE56",             "#E7E9ED",             "#36A2EB"         ],         label: 'My dataset' // for legend     }],     labels: [         "Red",         "Green",         "Yellow",         "Grey",         "Blue"     ] };  var pieOptions = {   events: false,   animation: {     duration: 500,     easing: "easeOutQuart",     onComplete: function () {       var ctx = this.chart.ctx;       ctx.font = Chart.helpers.fontString(Chart.defaults.global.defaultFontFamily, 'normal', Chart.defaults.global.defaultFontFamily);       ctx.textAlign = 'center';       ctx.textBaseline = 'bottom';        this.data.datasets.forEach(function (dataset) {          for (var i = 0; i 


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!