@@ -102,7 +102,7 @@ <h3>This may take a while!</h3>
102
102
103
103
const otherCacheStateColors = [ "#8085e9" , "#f15c80" , "#e4d354" , "#2b908f" , "#f45b5b" , "#91e8e1" ] ;
104
104
const interpolatedColor = "#fcb0f1" ;
105
- const basicProfiles = [ "Check" , "Debug" , "Opt" ] ;
105
+ const profiles = [ "Check" , "Debug" , "Opt" , "Doc "] ;
106
106
107
107
function tooltipPlugin ( { onclick, commits, isInterpolated, absoluteMode, shiftX = 10 , shiftY = 10 } ) {
108
108
let tooltipLeftOffset = 0 ;
@@ -385,7 +385,7 @@ <h3>This may take a while!</h3>
385
385
386
386
let plotOpts = genPlotOpts ( {
387
387
title : benchName + "-" + benchKind ,
388
- width : Math . floor ( window . innerWidth / 3 ) - 16 ,
388
+ width : Math . floor ( window . innerWidth / 4 ) - 16 ,
389
389
height : 300 ,
390
390
yAxisLabel,
391
391
series : seriesOpts ,
@@ -426,7 +426,7 @@ <h3>This may take a while!</h3>
426
426
sortedBenchNames . forEach ( name => {
427
427
benchmarks [ name ] = { } ;
428
428
429
- for ( let profile of basicProfiles ) {
429
+ for ( let profile of profiles ) {
430
430
if ( data . benchmarks [ name ] . hasOwnProperty ( profile ) ) {
431
431
benchmarks [ name ] [ profile . toLowerCase ( ) ] = optInterpolated ( data . benchmarks [ name ] [ profile ] ) ;
432
432
}
0 commit comments