@@ -137,7 +137,7 @@ export class CircularHeatmapComponent implements OnInit {
137137 for ( var j = 0 ; j < allSubDimensionInThisDimension . length ; j ++ ) {
138138 if ( allSubDimensionInThisDimension [ j ] == this . cardHeader ) {
139139 var taskName = this . ALL_CARD_DATA [ index ] [ "Task" ] [ taskIndex ] [ "taskName" ]
140- console . log ( taskName )
140+ // console.log(taskName)
141141 this . YamlObject [ allDimensionNames [ i ] ] [ allSubDimensionInThisDimension [ j ] ] [ taskName ] [ "isImplemented" ] = this . ALL_CARD_DATA [ index ] [ "Task" ] [ taskIndex ] [ "ifTaskDone" ]
142142 break
143143 }
@@ -223,17 +223,17 @@ export class CircularHeatmapComponent implements OnInit {
223223 _self . tasksData = d . explicitOriginalTarget . __data__ . Task ;
224224 _self . cardHeader = d . explicitOriginalTarget . __data__ . Name
225225 _self . showTaskCard = true
226- console . log ( _self . tasksData )
226+ // console.log(_self.tasksData)
227227 } )
228228 . on ( 'mouseover' , function ( d ) {
229229
230230 curr = d . explicitOriginalTarget . __data__
231- console . log ( curr )
231+ // console.log(curr)
232232 // increase the segment height of the one being hovered as well as all others of the same date
233233 // while decreasing the height of all others accordingly
234234 //console.log(d)
235235 if ( curr [ "Done%" ] != - 1 ) {
236- d3 . selectAll ( "#segment-" + curr . Name . replace ( / / g, "-" ) + '-' + curr . Level . replaceAll ( ' ' , '-' ) ) . attr ( "fill" , "white " )
236+ d3 . selectAll ( "#segment-" + curr . Name . replace ( / / g, "-" ) + '-' + curr . Level . replaceAll ( ' ' , '-' ) ) . attr ( "fill" , "yellow " )
237237 } ;
238238
239239 } )
@@ -347,8 +347,7 @@ export class CircularHeatmapComponent implements OnInit {
347347 . text ( function ( d :any ) {
348348 return d ;
349349 } ) ;
350- } ) ;
351-
350+ } ) ;
352351 }
353352
354353 /* Arc functions */
@@ -434,6 +433,5 @@ export class CircularHeatmapComponent implements OnInit {
434433 d3 . selectAll ( "#segment-" + this . ALL_CARD_DATA [ x ] [ "Name" ] . replace ( / / g, "-" ) + '-' + this . ALL_CARD_DATA [ x ] [ "Level" ] . replace ( ' ' , '-' ) ) . attr ( "fill" , "#DCDCDC" ) ;
435434 }
436435 }
437- }
438-
436+ }
439437}
0 commit comments