mirror of
https://github.com/chartjs/Chart.js.git
synced 2025-12-08 20:36:08 +00:00
handling negative values in doughnut charts
This commit is contained in:
parent
06b02e9c33
commit
d051dfe47f
@ -109,12 +109,12 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
calculateCircumference : function(value){
|
calculateCircumference : function(value){
|
||||||
return (Math.PI*2)*(value / this.total);
|
return (Math.PI*2)*(Math.abs(value) / this.total);
|
||||||
},
|
},
|
||||||
calculateTotal : function(data){
|
calculateTotal : function(data){
|
||||||
this.total = 0;
|
this.total = 0;
|
||||||
helpers.each(data,function(segment){
|
helpers.each(data,function(segment){
|
||||||
this.total += segment.value;
|
this.total += Math.abs(segment.value);
|
||||||
},this);
|
},this);
|
||||||
},
|
},
|
||||||
update : function(){
|
update : function(){
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user