Skip to content
This repository has been archived by the owner on Jan 2, 2019. It is now read-only.

Comment for Basic/Advance users #769

Open
wants to merge 1 commit into
base: 1.8
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Examples/33chartcreate-area.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)');

Expand Down