Commit Graph

6121 Commits

Author SHA1 Message Date
oleibman bdb950205c Update CHANGELOG.md 2026-01-18 19:18:58 -08:00
oleibman b837dbb55c More Tests 2026-01-18 18:31:08 -08:00
oleibman ba3b2938cb Coverage Tweak 2026-01-17 21:06:25 -08:00
oleibman f2588c1e05 Support Html After All
Use Unicode characters U+2610 (Ballot Box) and U+2611 (Ballot Box with Check).
2026-01-17 20:27:24 -08:00
oleibman 0d72d12044 Add Checkbox Style (Xlsx only)
Fix #4280, an issue with many problems; this is the last one (PR #4281 and PR #4677 dealt with other aspects of the problem). New releases of Excel allow representing TRUE/FALSE as a checked/unchecked checkbox. This requires a change to Styles, as expected. But Excel has implemented it in such a manner that changes are also required to Content_Types and workbook.xml.rels; and a new xml file propertyFeatureBag is also required. Seems like a lot of work for such a small change. A new property is added to Style, but only Xlsx Reader and Writer support it; no other format does.
2026-01-16 12:48:04 -08:00
oleibman 48f2fe37d6 Merge pull request #4777 from oleibman/changelog20260109
Update Changelog For New Release
5.4.0
2026-01-11 04:52:00 +00:00
oleibman 79208b34f4 Update Changelog For New Release 2026-01-10 20:43:53 -08:00
oleibman 2a60b97508 Merge pull request #4775 from oleibman/issue4773
Mpdf Styling of Multi-Line Strings
2026-01-09 17:40:05 +00:00
oleibman 69d337ded7 Update CHANGELOG.md 2026-01-09 09:35:32 -08:00
oleibman 60d0afd501 Merge pull request #4772 from oleibman/issue606
More Consistent Handling of Unsupported Functions
2026-01-09 16:32:55 +00:00
oleibman c0b28c45fd Merge branch 'master' into issue606 2026-01-09 08:30:01 -08:00
oleibman d9a4765bd5 Update CHANGELOG.md 2026-01-09 08:29:14 -08:00
oleibman a9d60a10df Remove Trailing Space 2026-01-07 22:02:53 -08:00
oleibman 53fe59626a Merge branch 'master' into issue4773 2026-01-07 21:41:33 -08:00
oleibman f3f09bc9a6 Mpdf Styling of Multi-Line Strings
Fix #4773. Mpdf is applying cell style only to the first line of a multi-line string. Explanation - Html Writer replaces newlines with `<br />` by calling `nl2br`, at least that was the intention. However, `nl2br` doesn't replace - it prepends. This doesn't do any harm in Html, Dompdf, or Tcpdf. However, Mpdf is known to be subject to occasional regexp backtracking errors when parsing large blocks of html. To avoid this, we chunk the html by splitting it at newlines, but this causes the styling to be lost for rich text elements following a newline.

The solution to this problem seems easy enough - replace `nl2br` with a routine that replaces rather than prepends. Unfortunately, Html Reader needs the newlines intact in order to parse things correctly. So a solution where the `nl2br` calls are used for non-Mpdf and using a substitute routine for Mpdf ought to work. However, doing my testing uncovered another bug - rich text with newlines can result in multiple `<br />` tags (see new Html test). The solution to this is a bit kludgey, but it does seem to fix both the Mpdf problem and the newly discovered Html problem. It will also tend to avoid the very minor problem of generating different line endings on Windows systems.
2026-01-07 21:34:34 -08:00
oleibman c69b747ec8 Merge pull request #4677 from raziel057/drawing-in-cell
Support Drawing in cell Read & Write
2026-01-07 04:30:38 +00:00
oleibman 83513c2cd5 Update Changelog 2026-01-06 20:17:28 -08:00
oleibman c96f9a7612 Coverage Tweak 2026-01-06 13:53:06 -08:00
oleibman 002f618416 More Tests and a Sample 2026-01-06 11:50:31 -08:00
Thomas Lallement 059a75880e Merge branch 'master' into drawing-in-cell 2026-01-06 09:38:09 +01:00
Thomas Lallement 9e639408ae CS Fixes 2026-01-06 09:15:49 +01:00
oleibman ccb5f05b9f Merge pull request #4771 from oleibman/hyperlinkcell
Fix Some Hyperlink Problems
2026-01-06 01:52:29 +00:00
oleibman 29908b95a7 Merge branch 'master' into hyperlinkcell 2026-01-05 17:42:12 -08:00
oleibman 2e51d0755e Update CHANGELOG.md 2026-01-05 17:41:16 -08:00
oleibman e698017d11 Merge pull request #4770 from oleibman/axisshadows
Chart Shadow `kx` and `ky`
2026-01-06 01:31:51 +00:00
oleibman ed51a473e2 Update CHANGELOG.md 2026-01-05 17:29:02 -08:00
oleibman 5a3305f28b More Consistent Handling of Unsupported Functions
Fix #606 (marked stale in 2018, but now reopened). User reports that, under some circumstances, `oldCalculatedValue` will be used as the result when an unsupported function is part of a formula (this seems like a sensible treatment), but, in other cases, the unsupported function is ignored, or has an unpredictable effect on the result.

To explain a little further, an unsupported function will return a "magic" value which will eventually be replaced by `oldCalculatedValue` (or null if there is none). However, the magic value is not being propagated. In the issue, there are 3 places where this propagation is currently omitted - when performing a binary comparison, when evaluating the condition in the `IF` function, and when evaluating the `SUM` function. This PR causes propagation to happen in all of those places, and a few others (MIN, MINA, MAX, MAXA, ROWS, COLUMNS). I would not be surprised to have missed one or more of the other situations.
2026-01-05 16:58:26 -08:00
Thomas Lallement 064f084580 Add coverage for BaseDrawing::isInCell method 2026-01-05 10:53:23 +01:00
Thomas Lallement 4d7c060897 Fix path of fixture images 2026-01-05 10:51:51 +01:00
Thomas Lallement 2e0fb13300 Fix Metadata and add test coverage 2026-01-05 10:39:48 +01:00
oleibman e33834b4ea Merge pull request #4769 from oleibman/issue918
Xls Writer and Empty RichText
2026-01-04 02:58:58 +00:00
oleibman 33007a361f Merge branch 'master' into issue918 2026-01-03 18:56:06 -08:00
oleibman 653a036510 Update CHANGELOG.md 2026-01-03 18:55:31 -08:00
oleibman 0a214f8d45 Merge pull request #4768 from oleibman/issue4766
Strings That Look Like Huge Floating Point Numbers
2026-01-04 02:24:56 +00:00
oleibman b6524f0640 Merge branch 'master' into issue4766 2026-01-03 18:18:34 -08:00
oleibman a140c3263c Update CHANGELOG.md 2026-01-03 18:17:53 -08:00
oleibman 77b6a96061 Merge pull request #4767 from oleibman/issue1319
Rowspan in Html
2026-01-04 02:02:31 +00:00
oleibman dade50db8d Update CHANGELOG.md 2026-01-03 17:59:34 -08:00
oleibman b89b4d920e Make Tests non-Static 2026-01-03 15:56:38 -08:00
oleibman b60ffd09d6 Fix Some Hyperlink Problems
Fix #3889. Fix #2464. After evaluating HYPERLINK function specifying cell address(es) rather than literal(s), the calculated hyperlink is attached to the wrong cell. I probably should have figured this out sooner - this is just another instance of the common problem of trying to assign a cell to a variable and then using the variable after a delay during which the "current" cell may have changed. The problem is resolved by storing the cell's worksheet and coordinate on entry to HYPERLINK, then restoring those before manipulating the hyperlink before returning to the caller.

An additional problem with hyperlinks is that assigning a new value to a cell has not cleared any hyperlink associated with the cell. This will now happen, if needed, whenever `setValue` or `setValueExplicit` is called.

A third problem is unaddressed. A (fairly unrealistic) formula like:
```php
$sheet->getCell('A4')->setValue('=LEN(HYPERLINK("http://www.example.com", "Example"))');
```
winds up attaching a hyperlink to the cell when its value is calculated, and it probably shouldn't. However, @TobiasBg reports in 2464 that Excel for Mac does the same thing, and I've just confirmed that Excel 365 on Windows does likewise. Furthermore, the hyperlink which Excel creates is not usable ("Cannot open the specified file"), whereas the link that PhpSpreadsheet creates is usable. So we're not doing any worse than Excel, and arguably doing better. I'm satisfied.
2026-01-03 13:25:42 -08:00
Thomas Lallement ca28d561ba Fix count of drawing 2026-01-03 20:28:15 +01:00
oleibman 4549c29c80 Chart Shadow kx and ky
Thank you to @raziel057, who pointed out this problem while doing some research on a PR on which he is working. The code in AxisShadowTest generates a spreadsheet which, if written to disk, will be treated by Excel as corrupt. Since the test doesn't actually generate a spreadsheet, it isn't entirely invalid, but it should do a better job of presenting usable code.

Chart axes have a shadow property, which has many sub-properties. One of these is `size`, which also has sub-properties. Two of those are `kx` and `ky`, representing the skew angle of the shadow. These must be < 90 degrees and > -90 degrees (strangely *not* <= and >=) (see https://ooxml.info/docs/20/20.1/20.1.10/20.1.10.23/). If the supplied value is outside that range, Excel treats the chart as corrupt. That is the main problem with AxisShadowTest - kx was supplied as `-94`. This problem is easily solved in the test by setting it to a valid value instead. And, of course, Chart Writer is changed to not output the value if it is out of range.

Size also has 2 other properties `sx` and `sy`, where a value of 1 indicates 100% of normal size. The test sets `sy` to `254`, a not-particularly sane value. I am fairly certain that `2.54` was intended. I do not believe Excel treats `254` as corrupt, but the test is also changed to supply a sensible value. I imagine that there is a maximum value that Excel will allow, but I don't see it documented anywhere. The UI restricts it to 2 (200%), but larger values are accepted in the xml, so, at least for now, I allow anything.

I have to admit that the Excel UI puzzles me with respect to these properties. There is a single value that can be set for `size` (i.e. no separate property for `sx` and `sy`), and I don't see any way to set the skew angle. There is a settable `angle` property, but that refers to a different shadow property `direction`. At any rate, Excel seems to respond to changes in the xml for all of `sx`, `sy`, `kx`, and `ky`, so we will continue to support them.
2026-01-02 21:58:04 -08:00
oleibman e11a6afb5e Xls Writer and Empty RichText
Fix #918, which went stale in 2019 and is now reopened. Writing out a RichText object with no text to Xls creates a file which Excel considers corrupt. Treating such an object as a null string rather than a RichText object when writing eliminates the problem.
2026-01-02 12:46:24 -08:00
Thomas Lallement 4caf961192 Fix regression due to refactoring 2026-01-02 16:36:55 +01:00
Thomas Lallement 2623a98b5f Fix generation of metadata file for image in cell 2026-01-02 16:00:31 +01:00
oleibman e92b538efa Strings That Look Like Huge Floating Point Numbers
Fix #4776. DefaultValueBinder treats strings that look like scientific notation as floats. However, if Php evaluates them as `INF`, this can cause problems for Excel. A one-line change to DefaultValueBinder avoids this situation. Tests are added for DefaultValueBinder, and also for StringValueBinder and AdvancedValueBinder, although those extend DefaultValueBinder and needed no code changes.
2026-01-01 17:50:36 -08:00
oleibman f0e76a44c2 Test Member Was Misnamed
Caused some tests (and coverage) to be missed. Rename it properly.
2026-01-01 17:26:38 -08:00
oleibman 60a04419cc Rowspan in Html
Fix #1319, which went stale in 2020, and is now reopened. Rowspan is not showing up when saving some spreadsheets as Html. There is some logic concerning property `isSpannedRow` which indicates that this is deliberate, but I have no idea what purpose it serves. It leads directly to this issue, and also adversely affects (in a minor way) some samples (e.g. 17a_Html), where merged cells maintain their text but lose their top and bottom padding. After discarding this logic, the reported problem goes away, the samples look better, and no tests fail. So, whatever its purpose, it wasn't tested for. This PR permanently removes the property, and adds a little additional bulletproofing. A minor accommodation is needed for Tcpdf in one place.

This PR probably deletes more lines from Html Writer than it adds. It would not surprise me if this is one of those unusual cases where Coveralls reports a decrease in coverage despite the fact that all the new code is covered.
2026-01-01 16:34:56 -08:00
oleibman 0544868f90 Merge pull request #4765 from oleibman/issue820
SUBTOTAL and Hidden Rows
2025-12-31 21:18:31 +00:00
oleibman 6af5379b6b Update CHANGELOG.md 2025-12-31 13:15:45 -08:00