Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用多色创建条形图PHPExcel,这意味着每个条形都可以包含多色,如下所示。
PHPExcel
我已经搜索过了,但无法找到解决方案。
第二个问题如何增加条的宽度?
最好的祝福
这是一个堆积柱形图,因此您需要将 plotGrouping 设置为 PHPExcel_Chart_DataSeries::GROUPING_STACKED
有关示例,请参见 /Examples/33chartcreate-bar-stacked.php
但设置$series->setPlotDirection(PHPExcel_Chart_DataSeries::DIRECTION_COLUMN);为垂直堆叠而不是水平堆叠
$series->setPlotDirection(PHPExcel_Chart_DataSeries::DIRECTION_COLUMN);