0

グラフを次のように設定する方法はありますか? http://www.epicstan.com/graf.jpg ?

グラフの周りの数字を取り除く方法がわかりません。

生成されたファイルは次のとおりですhttp://www.epicstan.com/export.xlsxとシート 2 で、そのグラフの外観を変更する必要があります。

ここにコードがあります..

<?php
/* part of generater code */
/* charts */
$dataSeriesValues = array(  
    new \PHPExcel_Chart_DataSeriesValues('Number', 'sheet2!$I$'.(($i*5)+3).':$I$'.(($i*5)+5), NULL, 6),
);

//  Build the dataseries
$series = new \PHPExcel_Chart_DataSeries(
\PHPExcel_Chart_DataSeries::TYPE_BARCHART_3D, // plotType
    NULL,
    range(0, count($dataSeriesValues)-1),
    NULL,
    NULL,
    $dataSeriesValues
);

$series->setPlotDirection(\PHPExcel_Chart_DataSeries::DIRECTION_BAR);

$layout = new \PHPExcel_Chart_Layout();
$layout->setManual3dAlign(true);
$layout->setXRotation(10);
$layout->setYRotation(20);
$layout->setRightAngleAxes(1);
$layout->setShowVal(true);

$plotarea = new \PHPExcel_Chart_PlotArea($layout, array($series));


$chart = new \PHPExcel_Chart(
    'chart1',
    NULL,
    NULL,
    $plotarea,
    true,
    0,
    NULL,
    NULL
);

$chart->setTopLeftPosition('I'.(($i*5)+2));
$chart->setBottomRightPosition('J'.(($i*5)+8));

$excel->getActiveSheet()->addChart($chart);

$excel->setActiveSheetIndex(0);


$objWriter = new \PHPExcel_Writer_Excel2007($excel);
$objWriter->setIncludeCharts(TRUE);
$file = DOWNLOAD_DIR . 'export.xlsx';
$objWriter->save($file);

ありがとうございました。

ピーター

4

1 に答える 1

0

dataseries コンストラクターの引数を変更して、一連の空の文字列 plotCategories を設定します。

//  Build the dataseries
$series = new \PHPExcel_Chart_DataSeries(
    \PHPExcel_Chart_DataSeries::TYPE_BARCHART_3D, // plotType
    NULL,
    range(0, count($dataSeriesValues)-1),
    NULL,
    new \PHPExcel_Chart_DataSeriesValues(
        'String', 
        NULL, 
        NULL, 
        count($dataSeriesValues)
    ),
    $dataSeriesValues
);
于 2013-08-28T19:29:02.067 に答える