@@ -169,7 +169,7 @@ function drawTimeline(id, data, minX, maxX, minY, maxY, unitY, batchInterval) {
169
169
. style ( "cursor" , "pointer" )
170
170
. attr ( "cx" , function ( d ) { return x ( d . x ) ; } )
171
171
. attr ( "cy" , function ( d ) { return y ( d . y ) ; } )
172
- . attr ( "r" , function ( d ) { return isFailedBatch ( d . x ) ? "2" : "0 " ; } )
172
+ . attr ( "r" , function ( d ) { return isFailedBatch ( d . x ) ? "2" : "3 " ; } )
173
173
. on ( 'mouseover' , function ( d ) {
174
174
var tip = formatYValue ( d . y ) + " " + unitY + " at " + timeFormat [ d . x ] ;
175
175
showBootstrapTooltip ( d3 . select ( this ) . node ( ) , tip ) ;
@@ -187,7 +187,7 @@ function drawTimeline(id, data, minX, maxX, minY, maxY, unitY, batchInterval) {
187
187
. attr ( "stroke" , function ( d ) { return isFailedBatch ( d . x ) ? "red" : "white" ; } )
188
188
. attr ( "fill" , function ( d ) { return isFailedBatch ( d . x ) ? "red" : "white" ; } )
189
189
. attr ( "opacity" , function ( d ) { return isFailedBatch ( d . x ) ? "1" : "0" ; } )
190
- . attr ( "r" , function ( d ) { return isFailedBatch ( d . x ) ? "2" : "0 " ; } ) ;
190
+ . attr ( "r" , function ( d ) { return isFailedBatch ( d . x ) ? "2" : "3 " ; } ) ;
191
191
} )
192
192
. on ( "click" , function ( d ) {
193
193
if ( lastTimeout != null ) {
0 commit comments