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
- 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.
21
30
22
31
### Removed
23
32
@@ -26,6 +35,15 @@ and this project adheres to [Semantic Versioning](https://semver.org).
26
35
### Fixed
27
36
28
37
- Fully flatten an array [Issue #2955](https://github.com/PHPOffice/PhpSpreadsheet/issues/2955)[PR #2956](https://github.com/PHPOffice/PhpSpreadsheet/pull/2956)
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)
Settings::setChartRenderer(\PhpOffice\PhpSpreadsheet\Chart\Renderer\JpGraph::class); // to use jpgraph/jpgraph
82
+
//or
83
+
Settings::setChartRenderer(\PhpOffice\PhpSpreadsheet\Chart\Renderer\MtJpGraphRenderer::class); // to use mitoteam/jpgraph
80
84
```
81
85
82
-
You can `composer/require` the github version of jpgraph, but this was abandoned at version 4.0; or manually download the latest version that supports PHP 8 and above from [jpgraph.net](https://jpgraph.net/)
83
-
84
86
## Documentation
85
87
86
88
Read more about it, including install instructions, in the [official documentation](https://phpspreadsheet.readthedocs.io). Or check out the [API documentation](https://phpoffice.github.io/PhpSpreadsheet).
0 commit comments