From 0cad0bfc646191d5987c2fc27227d83c8468474f Mon Sep 17 00:00:00 2001 From: Kundan Gaira Date: Thu, 17 Dec 2015 16:49:53 +0530 Subject: [PATCH] Comment for Basic/Advance users Added how to use Object further level customization --- Examples/33chartcreate-area.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Examples/33chartcreate-area.php b/Examples/33chartcreate-area.php index fac8ce93f..bb0cdac39 100644 --- a/Examples/33chartcreate-area.php +++ b/Examples/33chartcreate-area.php @@ -99,9 +99,14 @@ // Set the series in the plot area $plotArea = new PHPExcel_Chart_PlotArea(NULL, array($series)); +/* You can further set other properties of PlotArea using $plotArea variable + i.e. $plotArea->refresh($objWorksheet); +*/ // Set the chart legend $legend = new PHPExcel_Chart_Legend(PHPExcel_Chart_Legend::POSITION_TOPRIGHT, NULL, false); - +/* You can further set other properties of Chart_Legend using $legend variable + i.e. $legend->setOverlay(true); +*/ $title = new PHPExcel_Chart_Title('Test %age-Stacked Area Chart'); $yAxisLabel = new PHPExcel_Chart_Title('Value ($k)');