You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Upgrade Dev TCPDF to 6.5
Implementation of tecnickcom/TCPDF#467, which is available in just-released Tcpdf 6.5, will improve look of Tcpdf rendering for PhpSpreadsheet. Fix#1164.
One test had been suppressed for Tcpdf, ostensibly because it was not compatible with Php8. As it turns out, the PhpSpreadsheet code which invokes Tcpdf was (harmlessly) incorrect, so the Php8 issue was actually with PhpSpreadsheet, not Tcpdf. That code is corrected, and the test is no longer suppressed.
* Update Change Log
Pick up some earlier changes as well as this one, and deprecations which had been omitted from the 1.24 change log.
- Axis getLineProperty deprecated in favor of getLineColorProperty.
25
+
- Moved majorGridlines and minorGridlines from Chart to Axis. Setting either in Chart constructor or through Chart methods, or getting either using Chart methods is deprecated.
26
+
- Chart::EXCEL_COLOR_TYPE_* copied from Properties to ChartColor; use in Properties is deprecated.
27
+
- ChartColor::EXCEL_COLOR_TYPE_ARGB deprecated in favor of EXCEL_COLOR_TYPE_RGB ("A" component was never allowed).
28
+
- Misspelled Properties::LINE_STYLE_DASH_SQUERE_DOT deprecated in favor of LINE_STYLE_DASH_SQUARE_DOT.
29
+
- Clone not permitted for Spreadsheet. Spreadsheet->copy() can be used instead.
24
30
25
31
### Removed
26
32
@@ -30,6 +36,14 @@ and this project adheres to [Semantic Versioning](https://semver.org).
30
36
31
37
- Fully flatten an array [Issue #2955](https://github.com/PHPOffice/PhpSpreadsheet/issues/2955)[PR #2956](https://github.com/PHPOffice/PhpSpreadsheet/pull/2956)
32
38
- cellExists() and getCell() methods should support UTF-8 named cells [Issue #2987](https://github.com/PHPOffice/PhpSpreadsheet/issues/2987)[PR #2988](https://github.com/PHPOffice/PhpSpreadsheet/pull/2988)
- Fix PDF problems with text rotation and paper size. [Issue #1747](https://github.com/PHPOffice/PhpSpreadsheet/issues/1747)[Issue #1713](https://github.com/PHPOffice/PhpSpreadsheet/issues/1713)[PR #2960](https://github.com/PHPOffice/PhpSpreadsheet/pull/2960)
41
+
- Limited support for chart titles as formulas [Issue #2965](https://github.com/PHPOffice/PhpSpreadsheet/issues/2965)[Issue #749](https://github.com/PHPOffice/PhpSpreadsheet/issues/749)[PR #2971](https://github.com/PHPOffice/PhpSpreadsheet/pull/2971)
42
+
- Add Gradients, Transparency, and Hidden Axes to Chart [Issue #2257](https://github.com/PHPOffice/PhpSpreadsheet/issues/2257)[Issue #2229](https://github.com/PHPOffice/PhpSpreadsheet/issues/2929)[Issue #2935](https://github.com/PHPOffice/PhpSpreadsheet/issues/2935)[PR #2950](https://github.com/PHPOffice/PhpSpreadsheet/pull/2950)
43
+
- Chart Support for Rounded Corners and Trendlines [Issue #2968](https://github.com/PHPOffice/PhpSpreadsheet/issues/2968)[Issue #2815](https://github.com/PHPOffice/PhpSpreadsheet/issues/2815)[PR #2976](https://github.com/PHPOffice/PhpSpreadsheet/pull/2976)
44
+
- Add setName Method for Chart [Issue #2991](https://github.com/PHPOffice/PhpSpreadsheet/issues/2991)[PR #3001](https://github.com/PHPOffice/PhpSpreadsheet/pull/3001)
45
+
- Eliminate partial dependency on php-intl in StringHelper [Issue #2982](https://github.com/PHPOffice/PhpSpreadsheet/issues/2982)[PR #2994](https://github.com/PHPOffice/PhpSpreadsheet/pull/2994)
46
+
- Minor changes for Pdf [Issue #2999](https://github.com/PHPOffice/PhpSpreadsheet/issues/2999)[PR #3002](https://github.com/PHPOffice/PhpSpreadsheet/pull/3002)[PR #3006](https://github.com/PHPOffice/PhpSpreadsheet/pull/3006)
0 commit comments