$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。 我该怎么办?