mirror of
https://github.com/shuchkin/simplexlsxgen.git
synced 2023-08-10 21:12:59 +03:00
1.3.11
This commit is contained in:
parent
61e55d6277
commit
343e549ca1
@ -1,5 +1,8 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.3.11 (2023-03-28)
|
||||||
|
* freezePanes( corner_cell ) - freezePanes to keep an area of a worksheet visible while you scroll, corner_cell is not included.
|
||||||
|
|
||||||
## 1.3.10 (2022-12-14)
|
## 1.3.10 (2022-12-14)
|
||||||
* added borders ```<style border="medium">Black Border</style>``` see colored [examples](https://github.com/shuchkin/simplexlsxgen#formatting)
|
* added borders ```<style border="medium">Black Border</style>``` see colored [examples](https://github.com/shuchkin/simplexlsxgen#formatting)
|
||||||
* added formulas ```<f v="100">SUM(B1:B10)</f>``` see [examples](https://github.com/shuchkin/simplexlsxgen#data-types)
|
* added formulas ```<f v="100">SUM(B1:B10)</f>``` see [examples](https://github.com/shuchkin/simplexlsxgen#data-types)
|
||||||
|
@ -133,6 +133,10 @@ exit();
|
|||||||
// Autofilter
|
// Autofilter
|
||||||
$xlsx->autoFilter('A1:B10');
|
$xlsx->autoFilter('A1:B10');
|
||||||
|
|
||||||
|
// Freeze rows and columns from top-left corner up to, but not including,
|
||||||
|
// the row and column of the indicated cell
|
||||||
|
$xlsx->freezePanes('C3');
|
||||||
|
|
||||||
```
|
```
|
||||||
### JS array to Excel (AJAX)
|
### JS array to Excel (AJAX)
|
||||||
```php
|
```php
|
||||||
|
Loading…
Reference in New Issue
Block a user