Forum


Replies: 7   Views: 215
Serdatalabels - how to use?
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 256bytes  · 21-05-2024 - 14:15

Thanks, that did the trick. i patched

generateDATALABELS_SER()

in CreateGraphic.php and added

case 'top':
    $position = 't';
    break;
case 'left':
    $position = 'l';
    break;
case 'right':
    $position = 'r';
    break;
case 'bottom':
    $position = 'b';
    break;
case 'bestFit':
    $position = 'bestFit';
    break;