Forum


Replies: 2   Views: 2599
Lower border clipping off for charts?
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.
We encourage you to download the current phpdocx version and check the Documentation available.

Posted by dev@ram  · 26-10-2017 - 16:32

Thank you for your help. I'm not sure what was causing it but I finally got it fixed. There was a linebreak at the end of the graph addGraph(). I made it twice.

 $docx->addBreak(array('type' => 'line'));
 $docx->addBreak(array('type' => 'line'));

the weird part is that if you use the one below it does not work :)

$docx->addBreak(array('type' => 'line', 'number' => 2));

anyway, thought I'll share.