因为业务上需要生成word报表,所以使用phpword 生成图表,做个总结
1 生成图表
代码
$chart = new Chart(type, $categories, $series)
其中 type 为报表类别 一共 12 种 分别为
'pie', //饼图 'doughnut', //环型饼图 'line', //线图 'bar', //条形图 可以认为是柱图横过来 'stacked_bar',//堆积条形 'percent_stacked_bar', //百分比堆叠条形图
'column',//柱图 'stacked_column',//堆积柱图 'percent_stacked_column',//百分比堆叠柱形图
'area',// 区域图 'radar', //雷达图 'scatter'//散点图
categories 为横坐标的值
series 为纵坐标的值
2 多个series问题
遇到柱图,线型图等需要多条线(柱)的时候
$chart.addSeries($categories, $series, 'series名称');
当phpoffice/phpword 版本低于0.18.1 时 柱图的多个值会堆积在一起,需升级phpoffice/phpword 会解决这个问题
3 图例问题
图表默认不显示图例,假如需要显示图例
$chart->getStyle()
->setShowLegend(true);
默认图例在右边,修改图例的位置
$chart->getStyle()
->setShowLegend(true)
->setLegendPosition('b')
setLegendPosition 值有 'r' //右侧显示 , 'b'//下方显示, 't'//上方显示, 'l'// 左侧显示, 'tr'//右侧上方显示