For the life of me I can't get the Google Chart Legend to NOT be shown, even though I'm specifying "NONE." (also noted here: Hiding the legend in Google Chart ).
$options = array( 'title' => 'Average Load Summary',
'titlePosition' => 'in',
'legend.position' => 'none',
'width' => 1100,
'height' => 700,
'hAxis.slantedTextAngle' => 90,
'hAxis.position' => 'out',
'pointSize' => 5,
'hAxis.title' => 'Stops');
Further, I can't get the slanted text angle to go horizontal (90 degrees), such that my entire label will be shown. Right now google adds "..." to my labels and they are at about a 45 degree angle. Finally, I also cannot get the hAxis.title
or vAxis.title
to be displayed, not matter what...
Thanks for any help anyone might have. This is a lineChart by the way...