Fix a couple of errors that have sneaked into the date code, plus some minor problems in radar/scatter chart examples, and a spurious html comment that had sneaked into spreadsheet
This commit is contained in:
parent
3886999957
commit
558da2269d
|
@ -97,14 +97,15 @@ $dataSeriesValues = array(
|
||||||
|
|
||||||
// Build the dataseries
|
// Build the dataseries
|
||||||
$series = new \PHPExcel\Chart\DataSeries(
|
$series = new \PHPExcel\Chart\DataSeries(
|
||||||
\PHPExcel\Chart\DataSeries::TYPE_RADARCHART, // plotType
|
\PHPExcel\Chart\DataSeries::TYPE_RADARCHART, // plotType
|
||||||
NULL, // plotGrouping (Radar charts don't have any grouping)
|
NULL, // plotGrouping (Radar charts don't have any grouping)
|
||||||
range(0, count($dataSeriesValues)-1), // plotOrder
|
range(0, count($dataSeriesValues)-1), // plotOrder
|
||||||
$dataSeriesLabels, // plotLabel
|
$dataSeriesLabels, // plotLabel
|
||||||
$xAxisTickValues, // plotCategory
|
$xAxisTickValues, // plotCategory
|
||||||
$dataSeriesValues, // plotValues
|
$dataSeriesValues, // plotValues
|
||||||
NULL, // smooth line
|
NULL, // plotDirection
|
||||||
\PHPExcel\Chart\DataSeries::STYLE_MARKER // plotStyle
|
NULL, // smooth line
|
||||||
|
\PHPExcel\Chart\DataSeries::STYLE_MARKER // plotStyle
|
||||||
);
|
);
|
||||||
|
|
||||||
// Set up a layout object for the Pie chart
|
// Set up a layout object for the Pie chart
|
||||||
|
|
|
@ -89,6 +89,7 @@ $series = new \PHPExcel\Chart\DataSeries(
|
||||||
$dataSeriesLabels, // plotLabel
|
$dataSeriesLabels, // plotLabel
|
||||||
$xAxisTickValues, // plotCategory
|
$xAxisTickValues, // plotCategory
|
||||||
$dataSeriesValues, // plotValues
|
$dataSeriesValues, // plotValues
|
||||||
|
NULL, // plotDirection
|
||||||
NULL, // smooth line
|
NULL, // smooth line
|
||||||
\PHPExcel\Chart\DataSeries::STYLE_LINEMARKER // plotStyle
|
\PHPExcel\Chart\DataSeries::STYLE_LINEMARKER // plotStyle
|
||||||
);
|
);
|
||||||
|
|
|
@ -40,7 +40,7 @@ class Date
|
||||||
* @private
|
* @private
|
||||||
* @var int
|
* @var int
|
||||||
*/
|
*/
|
||||||
protected static $excelBaseDate = self::CALENDAR_WINDOWS_1900;
|
protected static $excelCalendar = self::CALENDAR_WINDOWS_1900;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Default timezone to use for DateTime objects
|
* Default timezone to use for DateTime objects
|
||||||
|
@ -132,7 +132,7 @@ class Date
|
||||||
*/
|
*/
|
||||||
public static function excelToDateTimeObject($excelTimestamp = 0, $timeZone = null) {
|
public static function excelToDateTimeObject($excelTimestamp = 0, $timeZone = null) {
|
||||||
$timeZone = ($timeZone === null) ? self::getDefaultTimezone() : self::validateTimeZone($timeZone);
|
$timeZone = ($timeZone === null) ? self::getDefaultTimezone() : self::validateTimeZone($timeZone);
|
||||||
if (self::$excelBaseDate == self::CALENDAR_WINDOWS_1900) {
|
if (self::$excelCalendar == self::CALENDAR_WINDOWS_1900) {
|
||||||
$baseDate = ($excelTimestamp < 60) ? new \DateTime('1899-12-31', $timeZone) : new \DateTime('1899-12-30', $timeZone);
|
$baseDate = ($excelTimestamp < 60) ? new \DateTime('1899-12-31', $timeZone) : new \DateTime('1899-12-30', $timeZone);
|
||||||
} else {
|
} else {
|
||||||
$baseDate = new \DateTime('1904-01-01', $timeZone);
|
$baseDate = new \DateTime('1904-01-01', $timeZone);
|
||||||
|
@ -159,7 +159,7 @@ class Date
|
||||||
* @throws \Exception
|
* @throws \Exception
|
||||||
*/
|
*/
|
||||||
public static function excelToTimestamp($excelTimestampexcelTimestamp = 0, $timeZone = null) {
|
public static function excelToTimestamp($excelTimestampexcelTimestamp = 0, $timeZone = null) {
|
||||||
return self::excelToTimestamp($excelTimestamp, $timeZone)
|
return self::excelToDateTimeObject($excelTimestamp, $timeZone)
|
||||||
->format('U');
|
->format('U');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -212,7 +212,7 @@ class Date
|
||||||
*/
|
*/
|
||||||
public static function formattedPHPToExcel($year, $month, $day, $hours = 0, $minutes = 0, $seconds = 0)
|
public static function formattedPHPToExcel($year, $month, $day, $hours = 0, $minutes = 0, $seconds = 0)
|
||||||
{
|
{
|
||||||
if (self::$excelBaseDate == self::CALENDAR_WINDOWS_1900) {
|
if (self::$excelCalendar == self::CALENDAR_WINDOWS_1900) {
|
||||||
//
|
//
|
||||||
// Fudge factor for the erroneous fact that the year 1900 is treated as a Leap Year in MS Excel
|
// Fudge factor for the erroneous fact that the year 1900 is treated as a Leap Year in MS Excel
|
||||||
// This affects every date following 28th February 1900
|
// This affects every date following 28th February 1900
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!----><?php
|
<?php
|
||||||
|
|
||||||
namespace PHPExcel;
|
namespace PHPExcel;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue