We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bff0f82 + 1edbe09 commit c358eb9Copy full SHA for c358eb9
src/app/component/circular-heatmap/circular-heatmap.component.ts
@@ -712,7 +712,7 @@ export class CircularHeatmapComponent implements OnInit {
712
if (cntAll !== 0) {
713
this.ALL_CARD_DATA[index]['Done%'] = cntTrue / cntAll;
714
} else {
715
- this.ALL_CARD_DATA[index]['Done%'] = 0;
+ this.ALL_CARD_DATA[index]['Done%'] = -1;
716
}
717
var color = d3
718
.scaleLinear<string, string>()
@@ -728,7 +728,7 @@ export class CircularHeatmapComponent implements OnInit {
728
return color(_self.ALL_CARD_DATA[index]['Done%']);
729
});
730
731
- // this.noActivitytoGrey();
+ this.noActivitytoGrey();
732
733
734
ResetIsImplemented() {
0 commit comments