diff --git a/src/app/component/circular-heatmap/circular-heatmap.component.ts b/src/app/component/circular-heatmap/circular-heatmap.component.ts index ad1bc807..c3168aa3 100644 --- a/src/app/component/circular-heatmap/circular-heatmap.component.ts +++ b/src/app/component/circular-heatmap/circular-heatmap.component.ts @@ -712,7 +712,7 @@ export class CircularHeatmapComponent implements OnInit { if (cntAll !== 0) { this.ALL_CARD_DATA[index]['Done%'] = cntTrue / cntAll; } else { - this.ALL_CARD_DATA[index]['Done%'] = 0; + this.ALL_CARD_DATA[index]['Done%'] = -1; } var color = d3 .scaleLinear() @@ -728,7 +728,7 @@ export class CircularHeatmapComponent implements OnInit { return color(_self.ALL_CARD_DATA[index]['Done%']); }); } - // this.noActivitytoGrey(); + this.noActivitytoGrey(); } ResetIsImplemented() {