mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-25 14:48:21 +00:00
3861f7e37e
* Charts - Add Support for Date Axis Fix #2967. Fix #2969 (which had already been fixed prior to opening the issue, but had added urgency for Date Axes). Add ability to set axis type to date axis, in addition to original possiblities of value axis and category axis. * Update 33_Chart_create_line_dateaxis.php No idea why php-cs-fixer is complaining. It didn't do so when I first uploaded. I can't duplicate problem on my own system. Not enough detail in error message for me to act. Grasping at straws, I have moved the function definition (which is the only use of braces in the entire script) from the end of the script to the beginning. * Update 33_Chart_create_line_dateaxis.php Some comments were mis-aligned. This may be related to the reasons behind PR #3025, which didn't take care of this because this script had not yet been merged.
235 lines
11 KiB
PHP
235 lines
11 KiB
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Chart;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Chart\Axis;
|
|
use PhpOffice\PhpSpreadsheet\Chart\Chart;
|
|
use PhpOffice\PhpSpreadsheet\Chart\DataSeries;
|
|
use PhpOffice\PhpSpreadsheet\Chart\DataSeriesValues;
|
|
use PhpOffice\PhpSpreadsheet\Chart\Legend as ChartLegend;
|
|
use PhpOffice\PhpSpreadsheet\Chart\PlotArea;
|
|
use PhpOffice\PhpSpreadsheet\Chart\Properties;
|
|
use PhpOffice\PhpSpreadsheet\Chart\Title;
|
|
use PhpOffice\PhpSpreadsheet\Reader\Xlsx as XlsxReader;
|
|
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
|
use PhpOffice\PhpSpreadsheet\Writer\Xlsx as XlsxWriter;
|
|
use PhpOffice\PhpSpreadsheetTests\Functional\AbstractFunctional;
|
|
|
|
class AxisPropertiesTest extends AbstractFunctional
|
|
{
|
|
public function readCharts(XlsxReader $reader): void
|
|
{
|
|
$reader->setIncludeCharts(true);
|
|
}
|
|
|
|
public function writeCharts(XlsxWriter $writer): void
|
|
{
|
|
$writer->setIncludeCharts(true);
|
|
}
|
|
|
|
public function testAxisProperties(): void
|
|
{
|
|
$spreadsheet = new Spreadsheet();
|
|
$worksheet = $spreadsheet->getActiveSheet();
|
|
$worksheet->fromArray(
|
|
[
|
|
['', 2010, 2011, 2012],
|
|
['Q1', 12, 15, 21],
|
|
['Q2', 56, 73, 86],
|
|
['Q3', 52, 61, 69],
|
|
['Q4', 30, 32, 0],
|
|
]
|
|
);
|
|
|
|
// Set the Labels for each data series we want to plot
|
|
// Datatype
|
|
// Cell reference for data
|
|
// Format Code
|
|
// Number of datapoints in series
|
|
// Data values
|
|
// Data Marker
|
|
$dataSeriesLabels = [
|
|
new DataSeriesValues(DataSeriesValues::DATASERIES_TYPE_STRING, 'Worksheet!$B$1', null, 1), // 2010
|
|
new DataSeriesValues(DataSeriesValues::DATASERIES_TYPE_STRING, 'Worksheet!$C$1', null, 1), // 2011
|
|
new DataSeriesValues(DataSeriesValues::DATASERIES_TYPE_STRING, 'Worksheet!$D$1', null, 1), // 2012
|
|
];
|
|
// Set the X-Axis Labels
|
|
// Datatype
|
|
// Cell reference for data
|
|
// Format Code
|
|
// Number of datapoints in series
|
|
// Data values
|
|
// Data Marker
|
|
$xAxisTickValues = [
|
|
new DataSeriesValues(DataSeriesValues::DATASERIES_TYPE_STRING, 'Worksheet!$A$2:$A$5', null, 4), // Q1 to Q4
|
|
];
|
|
// Set the Data values for each data series we want to plot
|
|
// Datatype
|
|
// Cell reference for data
|
|
// Format Code
|
|
// Number of datapoints in series
|
|
// Data values
|
|
// Data Marker
|
|
$dataSeriesValues = [
|
|
new DataSeriesValues(DataSeriesValues::DATASERIES_TYPE_NUMBER, 'Worksheet!$B$2:$B$5', null, 4),
|
|
new DataSeriesValues(DataSeriesValues::DATASERIES_TYPE_NUMBER, 'Worksheet!$C$2:$C$5', null, 4),
|
|
new DataSeriesValues(DataSeriesValues::DATASERIES_TYPE_NUMBER, 'Worksheet!$D$2:$D$5', null, 4),
|
|
];
|
|
|
|
// Build the dataseries
|
|
$series = new DataSeries(
|
|
DataSeries::TYPE_LINECHART, // plotType
|
|
DataSeries::GROUPING_PERCENT_STACKED, // plotGrouping
|
|
range(0, count($dataSeriesValues) - 1), // plotOrder
|
|
$dataSeriesLabels, // plotLabel
|
|
$xAxisTickValues, // plotCategory
|
|
$dataSeriesValues // plotValues
|
|
);
|
|
|
|
// Set the series in the plot area
|
|
$plotArea = new PlotArea(null, [$series]);
|
|
// Set the chart legend
|
|
$legend = new ChartLegend(ChartLegend::POSITION_TOPRIGHT, null, false);
|
|
|
|
$title = new Title('Test %age-Stacked Area Chart');
|
|
$yAxisLabel = new Title('Value ($k)');
|
|
$xAxis = new Axis();
|
|
$xAxis->setFillParameters('FF0000', null, 'srgbClr');
|
|
self::assertSame('FF0000', $xAxis->getFillProperty('value'));
|
|
self::assertSame('', $xAxis->getFillProperty('alpha'));
|
|
self::assertSame('srgbClr', $xAxis->getFillProperty('type'));
|
|
|
|
$xAxis->setAxisOptionsProperties(
|
|
Properties::AXIS_LABELS_HIGH, // axisLabels,
|
|
null, // $horizontalCrossesValue,
|
|
Properties::HORIZONTAL_CROSSES_MAXIMUM, //horizontalCrosses
|
|
Properties::ORIENTATION_REVERSED, //axisOrientation
|
|
Properties::TICK_MARK_INSIDE, //majorTmt
|
|
Properties::TICK_MARK_OUTSIDE, //minorTmt
|
|
'8', //minimum
|
|
'68', //maximum
|
|
'20', //majorUnit
|
|
'5', //minorUnit
|
|
'6', //textRotation
|
|
'0', //hidden
|
|
);
|
|
self::assertSame(Properties::AXIS_LABELS_HIGH, $xAxis->getAxisOptionsProperty('axis_labels'));
|
|
self::assertNull($xAxis->getAxisOptionsProperty('horizontal_crosses_value'));
|
|
self::assertSame(Properties::HORIZONTAL_CROSSES_MAXIMUM, $xAxis->getAxisOptionsProperty('horizontal_crosses'));
|
|
self::assertSame(Properties::ORIENTATION_REVERSED, $xAxis->getAxisOptionsProperty('orientation'));
|
|
self::assertSame(Properties::TICK_MARK_INSIDE, $xAxis->getAxisOptionsProperty('major_tick_mark'));
|
|
self::assertSame(Properties::TICK_MARK_OUTSIDE, $xAxis->getAxisOptionsProperty('minor_tick_mark'));
|
|
self::assertSame('8', $xAxis->getAxisOptionsProperty('minimum'));
|
|
self::assertSame('68', $xAxis->getAxisOptionsProperty('maximum'));
|
|
self::assertSame('20', $xAxis->getAxisOptionsProperty('major_unit'));
|
|
self::assertSame('5', $xAxis->getAxisOptionsProperty('minor_unit'));
|
|
self::assertSame('6', $xAxis->getAxisOptionsProperty('textRotation'));
|
|
self::assertSame('0', $xAxis->getAxisOptionsProperty('hidden'));
|
|
|
|
$yAxis = new Axis();
|
|
$yAxis->setFillParameters('accent1', 30, 'schemeClr');
|
|
self::assertSame('accent1', $yAxis->getFillProperty('value'));
|
|
self::assertSame('30', $yAxis->getFillProperty('alpha'));
|
|
self::assertSame('schemeClr', $yAxis->getFillProperty('type'));
|
|
|
|
// Create the chart
|
|
$chart = new Chart(
|
|
'chart1', // name
|
|
$title, // title
|
|
$legend, // legend
|
|
$plotArea, // plotArea
|
|
true, // plotVisibleOnly
|
|
DataSeries::EMPTY_AS_GAP, // displayBlanksAs
|
|
null, // xAxisLabel
|
|
$yAxisLabel, // yAxisLabel
|
|
$xAxis, // xAxis
|
|
$yAxis, // yAxis
|
|
null, //majorGridlines,
|
|
null // minorGridlines
|
|
);
|
|
$xAxis2 = $chart->getChartAxisX();
|
|
self::assertSame('FF0000', $xAxis2->getFillProperty('value'));
|
|
self::assertSame('', $xAxis2->getFillProperty('alpha'));
|
|
self::assertSame('srgbClr', $xAxis2->getFillProperty('type'));
|
|
|
|
self::assertSame(Properties::AXIS_LABELS_HIGH, $xAxis2->getAxisOptionsProperty('axis_labels'));
|
|
self::assertNull($xAxis2->getAxisOptionsProperty('horizontal_crosses_value'));
|
|
self::assertSame(Properties::HORIZONTAL_CROSSES_MAXIMUM, $xAxis2->getAxisOptionsProperty('horizontal_crosses'));
|
|
self::assertSame(Properties::ORIENTATION_REVERSED, $xAxis2->getAxisOptionsProperty('orientation'));
|
|
self::assertSame(Properties::TICK_MARK_INSIDE, $xAxis2->getAxisOptionsProperty('major_tick_mark'));
|
|
self::assertSame(Properties::TICK_MARK_OUTSIDE, $xAxis2->getAxisOptionsProperty('minor_tick_mark'));
|
|
self::assertSame('8', $xAxis2->getAxisOptionsProperty('minimum'));
|
|
self::assertSame('68', $xAxis2->getAxisOptionsProperty('maximum'));
|
|
self::assertSame('20', $xAxis2->getAxisOptionsProperty('major_unit'));
|
|
self::assertSame('5', $xAxis2->getAxisOptionsProperty('minor_unit'));
|
|
self::assertSame('6', $xAxis2->getAxisOptionsProperty('textRotation'));
|
|
self::assertSame('0', $xAxis2->getAxisOptionsProperty('hidden'));
|
|
|
|
$yAxis2 = $chart->getChartAxisY();
|
|
self::assertSame('accent1', $yAxis2->getFillProperty('value'));
|
|
self::assertSame('30', $yAxis2->getFillProperty('alpha'));
|
|
self::assertSame('schemeClr', $yAxis2->getFillProperty('type'));
|
|
|
|
// Set the position where the chart should appear in the worksheet
|
|
$chart->setTopLeftPosition('A7');
|
|
$chart->setBottomRightPosition('H20');
|
|
|
|
// Add the chart to the worksheet
|
|
$worksheet->addChart($chart);
|
|
|
|
/** @var callable */
|
|
$callableReader = [$this, 'readCharts'];
|
|
/** @var callable */
|
|
$callableWriter = [$this, 'writeCharts'];
|
|
$reloadedSpreadsheet = $this->writeAndReload($spreadsheet, 'Xlsx', $callableReader, $callableWriter);
|
|
$spreadsheet->disconnectWorksheets();
|
|
|
|
$sheet = $reloadedSpreadsheet->getActiveSheet();
|
|
$charts2 = $sheet->getChartCollection();
|
|
self::assertCount(1, $charts2);
|
|
$chart2 = $charts2[0];
|
|
self::assertNotNull($chart2);
|
|
$xAxis3 = $chart2->getChartAxisX();
|
|
self::assertSame('FF0000', $xAxis3->getFillProperty('value'));
|
|
self::assertSame('', $xAxis3->getFillProperty('alpha'));
|
|
self::assertSame('srgbClr', $xAxis3->getFillProperty('type'));
|
|
|
|
self::assertSame(Properties::AXIS_LABELS_HIGH, $xAxis3->getAxisOptionsProperty('axis_labels'));
|
|
self::assertSame(Properties::TICK_MARK_INSIDE, $xAxis3->getAxisOptionsProperty('major_tick_mark'));
|
|
self::assertSame(Properties::TICK_MARK_OUTSIDE, $xAxis3->getAxisOptionsProperty('minor_tick_mark'));
|
|
self::assertNull($xAxis3->getAxisOptionsProperty('horizontal_crosses_value'));
|
|
self::assertSame(Properties::HORIZONTAL_CROSSES_MAXIMUM, $xAxis3->getAxisOptionsProperty('horizontal_crosses'));
|
|
self::assertSame(Properties::ORIENTATION_REVERSED, $xAxis3->getAxisOptionsProperty('orientation'));
|
|
self::assertSame('8', $xAxis3->getAxisOptionsProperty('minimum'));
|
|
self::assertSame('68', $xAxis3->getAxisOptionsProperty('maximum'));
|
|
self::assertSame('20', $xAxis3->getAxisOptionsProperty('major_unit'));
|
|
self::assertSame('5', $xAxis3->getAxisOptionsProperty('minor_unit'));
|
|
self::assertSame('6', $xAxis3->getAxisOptionsProperty('textRotation'));
|
|
self::assertSame('0', $xAxis3->getAxisOptionsProperty('hidden'));
|
|
|
|
$yAxis3 = $chart2->getChartAxisY();
|
|
self::assertSame('accent1', $yAxis3->getFillProperty('value'));
|
|
self::assertSame('30', $yAxis3->getFillProperty('alpha'));
|
|
self::assertSame('schemeClr', $yAxis3->getFillProperty('type'));
|
|
|
|
$xAxis3->setAxisOrientation(Properties::ORIENTATION_NORMAL);
|
|
self::assertSame(Properties::ORIENTATION_NORMAL, $xAxis3->getAxisOptionsProperty('orientation'));
|
|
$xAxis3->setAxisOptionsProperties(
|
|
Properties::AXIS_LABELS_HIGH, // axisLabels,
|
|
'5' // $horizontalCrossesValue,
|
|
);
|
|
self::assertSame('5', $xAxis3->getAxisOptionsProperty('horizontal_crosses_value'));
|
|
|
|
$yAxis3->setLineColorProperties('0000FF', null, 'srgbClr');
|
|
self::assertSame('0000FF', $yAxis3->getLineProperty('value'));
|
|
self::assertNull($yAxis3->getLineProperty('alpha'));
|
|
self::assertSame('srgbClr', $yAxis3->getLineProperty('type'));
|
|
$yAxis3->setAxisNumberProperties(Properties::FORMAT_CODE_GENERAL);
|
|
self::assertFalse($yAxis3->getAxisIsNumericFormat());
|
|
$yAxis3->setAxisNumberProperties(Properties::FORMAT_CODE_NUMBER);
|
|
self::assertTrue($yAxis3->getAxisIsNumericFormat());
|
|
|
|
$reloadedSpreadsheet->disconnectWorksheets();
|
|
}
|
|
}
|