xuri
efe3219af0
Delete ISSUE_TEMPLATE.md
2018-07-30 10:06:22 +08:00
xuri
df6b0d9ff4
Create PULL_REQUEST_TEMPLATE.md
2018-07-29 14:00:21 +08:00
xuri
b11b95a69a
Update issue templates
...
Issue templates have been added.
2018-07-27 10:11:13 +08:00
xuri
cddcf852c2
Merge pull request #253 from alex-whitney/252-color-scale-cond-formatting
...
Use min/mid/max value for 2 and 3 color scale conditional formatting
2018-07-26 09:46:26 +08:00
Alex Whitney
db7a605cf8
Use min/mid/max value for 2 and 3 color scale conditional formatting
2018-07-25 10:47:14 -04:00
Alex Whitney
a885bb0fb9
Add failing unit tests for issue-252
2018-07-25 10:45:09 -04:00
xuri
a3571ee39b
Bugfix: create worksheet cause file issue. Relate issue #249 .
2018-07-17 15:28:22 +08:00
xuri
79dfe1c307
GoDoc updated.
2018-07-13 17:40:47 +08:00
xuri
58a7b23d11
Merge pull request #246 from nad2000/retrieve-comments
...
added retrieval of worksheet comments
2018-07-10 10:10:38 +08:00
xuri
d6468fc114
- Initialize theme support;
...
- RGBA, HSL color convert has been added;
- go test updated
2018-07-07 15:59:48 +08:00
Rad Cirskis
1a953b6601
added unit tests
2018-06-30 22:55:14 +12:00
Rad Cirskis
e3050d21e7
added retieval of worksheet comments
2018-06-30 22:37:14 +12:00
xuri
9cb0e9308b
- Update Travis CI to include GOARCH=386 tests, relate issue #239 and #244 ;
...
- Fix doc typo
2018-06-30 16:44:09 +08:00
xuri
d80d6aa318
Merge pull request #234 from dolmen-go/WriteTo
...
Extract WriteTo method (see io.WriterTo) to expose bytes written
2018-06-29 09:53:57 +08:00
xuri
07d568aa44
Merge pull request #241 from nad2000/issues/238
...
improved comment formatting
2018-06-28 10:05:57 +08:00
xuri
74c6091cfc
Update comment.go
...
make the comment box's height auto and having the minimum height.
2018-06-28 10:03:53 +08:00
xuri
13cf7a3b03
Merge pull request #243 from liepumartins/patch-2
...
Restore date 32bit compatibility
2018-06-27 14:03:06 +08:00
Mārtiņš
4855a43bc6
Restore date 32bit compatibility, be more verbose
...
Do not use large int64 constants that are not available in GOARCH=386
Fix #239
2018-06-26 16:41:26 +03:00
Rad Cirskis
741810a863
improved commenting formatting
2018-06-23 23:35:27 +12:00
xuri
3a91b28ddb
Merge pull request #237 from liepumartins/patch-1
...
Ability to parse dates further in future
2018-06-20 15:53:30 +08:00
Mārtiņš
37c470e8c0
Ability to parse dates further in future
...
Golangs time.Duration uses nanoseconds, thus it is limited to approximately 290 years.
2018-06-20 09:16:25 +03:00
xuri
5db716d849
Merge pull request #155 from dolmen-go/deepcopy-with-reflect
...
CopySheet() using reflect instead of encoding/gob
2018-06-17 21:38:14 +08:00
Olivier Mengué
4a1b406456
CopySheet() using reflect instead of encoding/gob
...
Use github.com/mohae/deepcopy to deep copy worksheets instead of the
internal deepcopy function that was using encoding/gob serialization and
deserialization.
Rationale:
1/ using `encoding/gob` is much slower than
[`mohae/deepcopy`](https://github.com/mohae/deepcopy/ )
2/ When building an application this implementation of `deepcopy` drags
the `encoding/gob` package into the binary. And this package is much
bigger than `mohae/deepcopy` (which only depends on `time` and `reflect`).
```
$ LC_ALL=C stat -f "%6z %N" $(go env GOPATH)/pkg/$(go env GOOS)_$(go env GOARCH)/github.com/mohae/deepcopy.a $(go env GOROOT)/pkg/$(go env GOOS)_$(go env GOARCH)/encoding/gob.a
10508 .../pkg/darwin_amd64/github.com/mohae/deepcopy.a
541818 .../pkg/darwin_amd64/encoding/gob.a
```
2018-06-14 17:54:31 +02:00
Olivier Mengué
2132de1a08
Extract WriteTo method (see io.WriterTo) to expose bytes written
...
Extract a WriteTo() method (see io.WriterTo) that exposes the count of bytes
written and rewrite Write() to use it.
2018-06-14 17:00:00 +02:00
xuri
9e463b4614
- Add error return value for functions: `AddChart()`, `AddComment()`, `AddPicture()`, `AddShape()`, `AddTable()` and `SetConditionalFormat()`
...
- go test has been updated
2018-05-27 11:25:55 +08:00
xuri
aaced358f1
- Initialize shared formula types support, relate issue #227 ;
...
- go test and godoc has been updated
2018-05-26 16:23:15 +08:00
xuri
d96440edc4
- Performance optimization 20% faster, 14% memory savings on set cell values;
...
- Using the canonical syntax in issue template and contributing guide;
- go test has been updated
2018-05-15 21:00:56 +08:00
xuri
167554bfec
Improve unit testing, remove redundant code.
2018-05-14 10:12:46 +08:00
xuri
eb62256d16
Simplify testing code, add test case for outline functions and update the godoc.
2018-05-11 10:14:18 +08:00
xuri
b5655ce121
Merge pull request #219 from jdevelop/feature/chart-size
...
Added helper functions to set the chart size.
2018-05-10 09:50:31 +08:00
Eugene Dzhurinsky
1787c3533b
Use format string for chart dimension.
...
Signed-off-by: Eugene Dzhurinsky <jdevelop@gmail.com>
2018-05-09 08:13:20 -04:00
xuri
18aa606ffe
Merge pull request #221 from srdolor/outline
...
Added functions to set and get outline level for columns and rows.
2018-05-09 10:40:00 +08:00
Eugene Dzhurinsky
e09e47d988
Custom chart size.
...
Added helper functions to set the chart size.
Added the unit test
Signed-off-by: Eugene Dzhurinsky <jdevelop@gmail.com>
2018-05-08 20:21:26 -04:00
xuri
e8961f0aff
- Bugfix: set font family not works, relate issue #222 ;
...
- Remove useless function `replaceWorkSheetsRelationshipsNameSpace()`;
- Make test cases use strict error checking
2018-05-08 10:36:13 +08:00
Ilya Kuznetsov
e70618d084
Added functions to set and get outline level for columns and rows.
2018-05-07 21:47:31 +03:00
xuri
038e34250f
Merge pull request #220 from lunny/lunny/refactor
...
save bytes on memory instead of string
2018-05-07 16:44:02 +08:00
xuri
d04be7b33d
Merge branch 'master' into lunny/refactor
2018-05-07 16:42:30 +08:00
Ri Xu
3ca180f09c
Merge test cases and use strict error checking.
2018-05-07 16:14:35 +08:00
Lunny Xiao
38ad20efc1
save bytes on memory instead of string
2018-05-07 16:12:51 +08:00
xuri
761d47f45a
Merge pull request #211 from OloloevReal/master
...
Added ZoomScale SheetViewOption
2018-05-07 15:50:11 +08:00
xuri
3746ba6a50
Merge pull request #218 from lunny/master
...
Add iterator method for rows
2018-05-07 15:48:58 +08:00
Lunny Xiao
bc451a78de
add iterator method for rows
2018-05-05 13:33:19 +08:00
Ri Xu
934ecec1a9
- Set name of table support in `AddTable()`, relate issue #216 ;
...
- godoc and go test has been updated
2018-05-04 11:20:51 +08:00
Ri Xu
200437d778
Fix document typo.
2018-05-03 10:01:41 +08:00
Ri Xu
a9c7d6637c
- Support to set the positioning of a picture, relate issue #214 ;
...
- go test and godoc has been updated
2018-04-26 11:41:13 +08:00
Ri Xu
9ee57fdb38
Fix typo and adding Chinese version document.
2018-04-23 00:14:58 +08:00
OloloevReal
52eb0ececf
Merge branch 'master' of https://github.com/OloloevReal/excelize
2018-04-16 14:05:51 +03:00
OloloevReal
b8464af086
Added ZoomScale SheetViewOption
...
Accessible value between 10 - 400
Used as:
xlsx.SetSheetViewOptions(sheet, 0, excelize.ZoomScale(75))
2018-04-16 14:01:10 +03:00
OloloevReal
9933a49f0e
Fixed checking accessible value for ZoomScale, was missed in last commit
2018-04-15 23:14:00 +03:00
OloloevReal
4efc3dd8f0
Added ZoomScale SheetViewOption
...
Accessible value between 10 - 400
Used as:
xlsx.SetSheetViewOptions(sheet, 0, excelize.ZoomScale(75))
2018-04-15 22:56:47 +03:00