@@ -573,7 +573,7 @@ function complex_data_table(sample) {
573
573
var samplenest = d3 . nest ( )
574
574
. key ( d => d . rack ) . sortKeys ( collator . compare )
575
575
. key ( d => d . compute ) . sortKeys ( collator . compare )
576
- . sortValues ( ( a , b ) => a . timestep - b . timestep )
576
+ . sortValues ( ( a , b ) => a . Time - b . Time )
577
577
. entries ( sample ) ;
578
578
d3 . select ( "#compute-list" ) . html ( '' ) ;
579
579
var table = d3 . select ( "#compute-list" )
@@ -621,7 +621,7 @@ function complex_data_table(sample) {
621
621
. style ( "background" , function ( d ) { return color ( selectedService == null ?d . group :d [ selectedService ] ) } )
622
622
. style ( "opacity" , 0.85 ) ;
623
623
lit . append ( "span" )
624
- . text ( function ( d ) { return d3 . timeFormat ( "%B %d %Y %H:%M" ) ( d . timestep ) ; } ) ;
624
+ . text ( function ( d ) { return d3 . timeFormat ( "%B %d %Y %H:%M" ) ( d . Time ) ; } ) ;
625
625
626
626
return lir ;
627
627
}
@@ -734,6 +734,7 @@ function path(d, ctx, color) {
734
734
function path ( d , ctx , color ) {
735
735
if ( color ) ctx . strokeStyle = color ;
736
736
ctx . beginPath ( ) ;
737
+ ctx . setLineDash ( [ ] ) ;
737
738
var x0 = xscale ( dimensions [ 0 ] ) - 15 ,
738
739
y0 = yscale [ dimensions [ 0 ] ] ( d [ dimensions [ 0 ] ] ) ; // left edge
739
740
ctx . moveTo ( x0 , y0 ) ;
@@ -742,13 +743,12 @@ function path(d, ctx, color) {
742
743
var x = xscale ( p ) ,
743
744
y = yscale [ p ] ( d [ p ] ) ;
744
745
if ( y === undefined ) {
746
+ console . log ( p )
745
747
if ( valid ) {
746
748
ctx . stroke ( ) ;
747
749
ctx . beginPath ( ) ;
748
750
ctx . moveTo ( x0 , y0 ) ;
749
751
ctx . setLineDash ( [ 5 , 15 ] ) ;
750
- } else {
751
-
752
752
}
753
753
valid = false ;
754
754
} else if ( valid ) {
0 commit comments