Browse Source

Update arc.js

Fix for issue #1205.

I added a console.log while debugging this to verify that this null condition was being hit and that the charts still generated correctly after hitting this.
pull/1305/head
Mark Diesburg 9 years ago
parent
commit
37ade97f6a
  1. 42
      src/arc.js

42
src/arc.js

@ -26,27 +26,29 @@ c3_chart_internal_fn.updateArc = function () {
c3_chart_internal_fn.updateAngle = function (d) { c3_chart_internal_fn.updateAngle = function (d) {
var $$ = this, config = $$.config, var $$ = this, config = $$.config,
found = false, index = 0, found = false, index = 0;
gMin = config.gauge_min, gMax = config.gauge_max, gTic, gValue; if (config) {
$$.pie($$.filterTargetsToShow($$.data.targets)).forEach(function (t) { var gMin = config.gauge_min, gMax = config.gauge_max, gTic, gValue;
if (! found && t.data.id === d.data.id) { $$.pie($$.filterTargetsToShow($$.data.targets)).forEach(function (t) {
found = true; if (! found && t.data.id === d.data.id) {
d = t; found = true;
d.index = index; d = t;
d.index = index;
}
index++;
});
if (isNaN(d.startAngle)) {
d.startAngle = 0;
}
if (isNaN(d.endAngle)) {
d.endAngle = d.startAngle;
}
if ($$.isGaugeType(d.data)) {
gTic = (Math.PI) / (gMax - gMin);
gValue = d.value < gMin ? 0 : d.value < gMax ? d.value - gMin : (gMax - gMin);
d.startAngle = -1 * (Math.PI / 2);
d.endAngle = d.startAngle + gTic * gValue;
} }
index++;
});
if (isNaN(d.startAngle)) {
d.startAngle = 0;
}
if (isNaN(d.endAngle)) {
d.endAngle = d.startAngle;
}
if ($$.isGaugeType(d.data)) {
gTic = (Math.PI) / (gMax - gMin);
gValue = d.value < gMin ? 0 : d.value < gMax ? d.value - gMin : (gMax - gMin);
d.startAngle = -1 * (Math.PI / 2);
d.endAngle = d.startAngle + gTic * gValue;
} }
return found ? d : null; return found ? d : null;
}; };

Loading…
Cancel
Save