簡體   English   中英

PhpSpreadsheet 圖表不保存和/或損壞文件

[英]PhpSpreadsheet charts not saving and/or corrupting file

所以我正在開發一個需要用圖表生成 Xls 文件的報告應用程序。 不過這些圖表似乎不起作用。 我已經嘗試用 PhpSpreadsheet github 中的示例替換下面的代碼,但這也不起作用。

我有以下用於將數據(和圖表)插入工作表的內容:

$this->spreadsheet->createSheet();

$worksheet = $this->spreadsheet->getActiveSheet();
$worksheet->setTitle($title);
$periodStartArray = array(array('', $periodStartDate, $periodEndDate));

while (!empty($stack)) {
    $node = array_pop($stack);
    if ($node->getData()['portfolioData'][0] != null) {
        if ($node->getData()['portfolioData'][0]->getIncludeInStatusSide()) {
            $startValue = (float)$this->getDataPoint($node, 'general', $this->periodStart, 'value');
            $startValuePercent = number_format(($startValue / $this->startingTotalValues) * 100, $this->percentDecimals, $decimalPoints, $separators);

            $endValue = (float)$this->getDataPoint($node, 'general', $this->periodEnd, 'value');
            $endValuePercent = number_format(($endValue / $this->endingTotalValues) * 100, $this->percentDecimals, $decimalPoints, $separators);

            $startArray = array($node->getData()['portfolioData'][0]->getNavn(), $startValuePercent, $endValuePercent);

            $periodStartArray[] = $startArray;
        }
    }
}

$maxSize = count($periodStartArray);
$worksheet->fromArray($periodStartArray);
//$title . '!$B$1'

$dataSeriesLabels1 = [
    new DataSeriesValues(DataSeriesValues::DATASERIES_TYPE_STRING, $title . '!$B$1', null, 1),
];

// $maxSize - 1 should give the actual number of data points (since the first entry in the array is the 
// date row

$dataString = "'" . $title . "'" . '!$A$2:$A$' . $maxSize;
$xAxisTickValues1 = [
    new DataSeriesValues(DataSeriesValues::DATASERIES_TYPE_STRING, $dataString, null, $maxSize - 1)
];

$dataString = "'" . $title . "'" . '!$B$2:$B$' . $maxSize;
$dataSeriesValues1 = [
    new DataSeriesValues(DataSeriesValues::DATASERIES_TYPE_NUMBER, $dataString, null, $maxSize - 1)
];

$series = new DataSeries(
    DataSeries::TYPE_PIECHART,
    null,
    range(0, count($dataSeriesValues1) - 1),
    $dataSeriesLabels1,
    $xAxisTickValues1,
    $dataSeriesValues1
);

$layout = new Layout();
$layout->setShowVal(true);
$layout->setShowPercent(false);

$plotArea = new PlotArea($layout, array($series));
$legend = new Legend(Legend::POSITION_RIGHT, null, false);

$title = new Title($title);

$chart1 = new Chart(
    'chart1',
    $title,
    $legend,
    $plotArea,
    true, 
    0, 
    null, 
    null
);

$chart1->setTopLeftPosition('A10');
$chart1->setBottomRightPosition('P25');
$worksheet->addChart($chart1);

它成功地將數據插入到電子表格中,但不打印出任何圖表。 這是我保存電子表格的地方:

$writer = new \PhpOffice\PhpSpreadsheet\Writer\Xls($this->spreadsheet);
$writer->setIncludeCharts(true);
$writer->save($this->outputFile); 

所以我包括圖表,但沒有圖表出現。 當我將格式更改為 Xlsx 時,它似乎至少嘗試插入圖表,但它們已損壞並且 Excel 將其刪除。 這只是簡單的數據。 A 列中的一行公司名稱和 B 列和 C 列中的兩個值日期。 當我在生成 excel 文件后手動插入圖表時,它沒有問題。

用這個

DataSeries::EMPTY_AS_GAP, // displayBlanksAs

插入 0

就像在示例文件中一樣

https://github.com/PHPOffice/PhpSpreadsheet/blob/master/samples/templates/chartSpreadsheet.php

創建圖表時將 0 更改為 'gap'。

$chart1 = new Chart(
'chart1',
$title,
$legend,
$plotArea,
true, 
'gap', // use 'gap' instead of 0, 
null, 
null

);

以下是 PhPSpreadsheet 的問題

Excel 2003/2013/2019 無法打開包含圖表的文件

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM