22
33require __DIR__ . '/php-recipe-2nd/make_chart_parts.php ' ;
44
5- function make_graph ($ id , $ title , $ hAxis_title )
5+ function make_graph ($ id , $ title , $ hAxis_title, $ vAxis_maxValue = 0.01 )
66{
77 global $ results ;
88
@@ -14,8 +14,8 @@ function make_graph($id, $title, $hAxis_title)
1414 'DarkKhaki ' , 'DarkMagenta ' , 'DarkOliveGreen ' , 'DarkOrange ' , 'DarkOrchid ' ,
1515 'DarkRed ' , 'DarkSalmon ' , 'DarkSeaGreen ' , 'DarkSlateBlue ' , 'DarkSlateGray ' ,
1616 );
17- $ graphWidth = 1100 ;
18- $ graphHeight = 400 ;
17+ $ graphWidth = 1300 ;
18+ $ graphHeight = 500 ;
1919
2020 $ data = array ();
2121 $ data [] = array ('' , $ id , array ('role ' => 'style ' )); // header
@@ -31,7 +31,7 @@ function make_graph($id, $title, $hAxis_title)
3131 'titleTextStyle ' => array ('fontSize ' => 16 ),
3232 'hAxis ' => array ('title ' => $ hAxis_title ,
3333 'titleTextStyle ' => array ('bold ' => true )),
34- 'vAxis ' => array ('minValue ' => 0 , 'maxValue ' => 0.01 ),
34+ 'vAxis ' => array ('minValue ' => 0 , 'maxValue ' => $ vAxis_maxValue ),
3535 'width ' => $ graphWidth ,
3636 'height ' => $ graphHeight ,
3737 'bar ' => array ('groupWidth ' => '90% ' ),
0 commit comments