Hello,
I have several templates optimize with optimizeTemplate();
In these templates I have charts which I need to replace/fullfil with values.
After all that the templates are merged to create one document
$Docx = new CreateDocxFromTemplate('../Template/Optimize/Template.docx');
$Values = array(
  // Values
);
$Docx->replaceVariableByText($Values, array('raw' => true));
array_push($DocsToMerge, $Docx->createDocx());
How can I replace/add values to the existing charts?
Thanks