i am using xslx to generate a chart but the data doesn`t change, only the size how can i to change the data.
the example don`t use data property
require_once 'classes/CreateDocx.inc';
$docx = new CreateDocx();
$paramsChart = array(
'externalXLSX' => array(
'src' => 'Book.xlsx',
),
'sizeX' => 10,
'sizeY' => 5,
);
$docx->addChart($paramsChart);
$docx->createDocx('output');
thank you