如何使用PhpExcel或PhpSpreadSheet更改图表标题的大小字体?

时间:2018-11-26 11:08:02

标签: php phpexcel phpspreadsheet

$title= new \PhpOffice\PhpSpreadsheet\Chart\Title("titulo",$layout);

$chart = new \PhpOffice\PhpSpreadsheet\Chart(
    'chart1',   // name
    $title,       // title
    $legend,       // legend
    $plotArea,  // plotArea
    true,       // plotVisibleOnly
    0,          // displayBlanksAs
    $xAxisLabel,       // xAxisLabel
    $yAxisLabel        // yAxisLabel
);

此代码设置参数以在excel文件中生成图表。 默认情况下,图表标题的大小字体为18pt。我想将大小更改为10pt。 我该怎么办?

0 个答案:

没有答案