$docx = new CreateDocx();
$text = 'Phpdocx. Easily create Word and PDF documents online';
$data = array(
'data' => array(
array(
'name' => 'Legend 1',
'values' => array(20),
),
array(
'name' => 'Legend 2',
'values' => array(30),
),
array(
'name' => 'Legend 3',
'values' => array(40),
),
),
);
$paramsChart = array(
'data' => $data,
'type' => 'pieChart',
'sizeX' => 10,
'sizeY' => 5,
'chartAlign' => 'center',
);
$docx->addChart($paramsChart);
$docx->addText($text);
$docx->createDocxAndDownload('tutorial_2s');
i have this code so when i try to download the file is corrupted can you help me pls?