如何在PHPExcel图表中发送工作表数据静态

时间:2017-03-02 16:40:18

标签: php phpexcel

我从PHPExcel-1.8中的33chartcreate-pie.php中取了示例并根据我的需要进行更改。现在该示例的x轴值如。

$xAxisTickValues1 = array(
new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$A$2:$A$5', NULL, 4),  //  Q1 to Q4
);

现在,我想将它静态添加为PASS和FAIL所以,我试着像

$xAxisTickValues1 = array(
new PHPExcel_Chart_DataSeriesValues('String', 'PASS:FAIL', NULL, 2),    //  Q1 to Q4
);

但是,它不起作用。如何在该数组中放置静态值?

3 个答案:

答案 0 :(得分:3)

您遵循的示例:

root/app component

此处工作表是工作表的标题。因此,在绘制图形时,它将从指定的标题读取值,然后将列作为A2到A5。

如果您只是想添加静态值。在其中创建包含静态内容的单元格,并将单元格索引传递给数据系列值。

答案 1 :(得分:1)

我们需要在单元格中显示静态标签,以便在图表或PIE图表上显示它们。 在绘制图形时,我们可以使用setShowVal,setShowCatName等函数显示和隐藏标签或值。

  $objPHPExcel = new PHPExcel();
  $objWorksheet = $objPHPExcel->getActiveSheet();
  $objWorksheet->fromArray(
    array(
      array('', 2010,   2011,   2012),
      array('PASS',   12,   15,     21),
      array('FAIL',   56,   73,     86)
    )
  );

  $dataSeriesLabels1 = array(
     new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$C$1',    NULL, 1),   //  2011
  );

  $xAxisTickValues1 = array(
     new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$A$2:$A$3', NULL, 2), //  Q1 to Q4
  );

  $dataSeriesValues1 = array(
     new PHPExcel_Chart_DataSeriesValues('Number', 'Worksheet!$C$2:$C$3', NULL, 2),
  );

  //    Build the dataseries
  $series1 = new PHPExcel_Chart_DataSeries(
   PHPExcel_Chart_DataSeries::TYPE_PIECHART,                //   plotType
  NULL,                                                 //   plotGrouping (Pie charts don't have any grouping)
  range(0, count($dataSeriesValues1)-1),                    // plotOrder
  $dataSeriesLabels1,                                       // plotLabel
  $xAxisTickValues1,                                        // plotCategory
  $dataSeriesValues1                                        // plotValues
  );

  //    Set up a layout object for the Pie chart
  $layout1 = new PHPExcel_Chart_Layout();
  /*$layout1->setShowVal(TRUE);*/
  $layout1->setShowCatName(TRUE);

   //   Set the series in the plot area
   $plotArea1 = new PHPExcel_Chart_PlotArea($layout1, array($series1));
   //   Set the chart legend
   $legend1 = new      PHPExcel_Chart_Legend(PHPExcel_Chart_Legend::POSITION_RIGHT, NULL, false);

   $title1 = new PHPExcel_Chart_Title('Test Pie Chart');


   //   Create the chart
   $chart1 = new PHPExcel_Chart(
     'chart1',      // name
     $title1,       // title
     $legend1,      // legend
     $plotArea1,        // plotArea
     true,          // plotVisibleOnly
     0,             // displayBlanksAs
     NULL,          // xAxisLabel
     NULL           // yAxisLabel       - Pie charts don't have a Y-Axis
   );

答案 2 :(得分:1)

修改您的声明数组,如

array(
        array('',   2010,   2011,   2012),
        array('Q1',   12,   15,     21),
        array('Pass or fail',   56,   73,   86)
        )

。这是您设置静态值的方法。 现在要显示它,您可以在布局中添加一个属性,以使用->setShowCatName(TRUE);

显示图表的类别名称