Topic closed:
Please note this is an old forum thread. Information in this post may be out-to-date and/or erroneous.
Every phpdocx version includes new features and improvements. Previously unsupported features may have been added to newer releases, or past issues may have been corrected.
Edited by bdm ·
30-06-2015 - 04:51 SOLVED...
For all users who encountered this error I solved it by changing line 199 of CreateLineChart.inc
FROM.......
switch ($this->_hgrid) {
case 2:
$this->generateMINORGRIDLINES();
break;
case 3:
$this->generateMAJORGRIDLINES();
$this->generateMINORGRIDLINES();
break;
case 1:
default:
$this->generateMAJORGRIDLINES();
break;
}
INTO THIS......
switch ($this->_hgrid) {
case 1:
$this->generateMAJORGRIDLINES();
break;
case 2:
$this->generateMINORGRIDLINES();
break;
case 3:
$this->generateMAJORGRIDLINES();
$this->generateMINORGRIDLINES();
break;
default:
break;
}
DO THE SAME THING WITH vgrid......AND YOU'RE GOOD.
HAVE A NICE DAY