File tree 3 files changed +6
-5
lines changed
src/PhpSpreadsheet/Writer/Xls
tests/PhpSpreadsheetTests/Functional 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
9
9
10
10
### Added
11
11
12
- - Support cell comments in HTML writer and reader- [ #308 ] ( https://github.com/PHPOffice/PhpSpreadsheet/issues/308 )
12
+ - Support cell comments in HTML writer and reader - [ #308 ] ( https://github.com/PHPOffice/PhpSpreadsheet/issues/308 )
13
13
- Option to stop at a conditional styling, if it matches (only XLSX format) - [ #292 ] ( https://github.com/PHPOffice/PhpSpreadsheet/pull/292 )
14
14
15
15
### Fixed
16
16
17
17
- Better auto-detection of CSV separators - [ #305 ] ( https://github.com/PHPOffice/PhpSpreadsheet/issues/305 )
18
18
- Support for shape style ending with ` ; ` - [ #304 ] ( https://github.com/PHPOffice/PhpSpreadsheet/issues/304 )
19
+ - Freeze Panes takes wrong coordinates for XLSX - [ #322 ] ( https://github.com/PHPOffice/PhpSpreadsheet/issues/322 )
19
20
20
21
## [ 1.0.0] - 2017-12-25
21
22
Original file line number Diff line number Diff line change @@ -1603,8 +1603,8 @@ private function writePanes()
1603
1603
return ;
1604
1604
}
1605
1605
1606
- $ y = isset ($ panes [0 ]) ? $ panes [0 ] : null ;
1607
- $ x = isset ($ panes [1 ]) ? $ panes [1 ] : null ;
1606
+ $ x = isset ($ panes [0 ]) ? $ panes [0 ] : null ;
1607
+ $ y = isset ($ panes [1 ]) ? $ panes [1 ] : null ;
1608
1608
$ rwTop = isset ($ panes [2 ]) ? $ panes [2 ] : null ;
1609
1609
$ colLeft = isset ($ panes [3 ]) ? $ panes [3 ] : null ;
1610
1610
if (count ($ panes ) > 4 ) { // if Active pane was received
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ public function providerFormats()
21
21
*/
22
22
public function testFreezePane ($ format )
23
23
{
24
- $ cellSplit = 'B2 ' ;
25
- $ topLeftCell = 'E5 ' ;
24
+ $ cellSplit = 'B4 ' ;
25
+ $ topLeftCell = 'E7 ' ;
26
26
27
27
$ spreadsheet = new Spreadsheet ();
28
28
$ spreadsheet ->getActiveSheet ()->freezePane ($ cellSplit , $ topLeftCell );
You can’t perform that action at this time.
0 commit comments