Details
Description
Before changes in the graphlib I had the following lines in the overview graph :
//following two lines seem to silence notice warnings from graphlib.php
$line->y_tick_labels = null;
$line->offset_relation = null;
Since changes in graphlib these no longer work but now these lines silence the warnings :
//following two lines seem to silence notice warnings from graphlib.php
$line->parameter['y_tick_labels'] = null;
$line->offset_relation = null;
I think other graphs need to be checked to see if they are also broken. The library really needs fixing so that these properties are set to a sensible default or something and don't need to be set if they are not used.
Assigning this to Jenny since according to CVS Jenny made the changes to graphlib.
please fix before review Tuesday, thanks