blob: 889a7469c2bcb44e6e6256e08ae18eaadafed302 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
CHANGELOG
---------
- **October.23.11**: 1.0.8 release
- Added support for images (jpg, gif, png) in worksheets.
- **October.23.11**: 1.0.7 released
- Added support for 3D options when creating a new chart. This lets you set the persective, rotation and other 3D attributes when using worksheet.add_chart
- Updated serialization write test to verify write permissions and warn if it cannot run the test due to permission restrcitions.
- updated rake to include build, genoc and deploy tasks.
- rebuilt documentation.
- moved version constant to its own file
- fixed bug in SerAxis that was requiring tickLblSkip and tickMarkSkip to be boolean. Should be unsigned int.
- Review and improve docs
- rebuild of anchor positioning to remove some spagetti code. Chart now supports a start_at and end_at method that accept an arrar for col/row positioning. See example6 for an example. You can still pass :start_at and :end_at options to worksheet.add_chart.
- Refactored cat and val axis data to keep series serialization a bit more DRY
##October.22.11: 1.0.6 release
- Bumping version to include docs. Bug in gemspec pointing to incorrect directory.
##October.22.11: 1.05
- Added support for line charts
- Updated examples and readme
- Updated series title to be a real title ** NOTE ** If you are accessing titles directly you will need to update text assignation.
chart.series.first.title = 'Your Title'
chart.series.first.title.text = 'Your Title'
With this change you can assign a cell for the series title
chart.series.title = sheet.rows.first.cells.first
If you are using the recommended
chart.add_series :data=>[], :labels=>[], :title
You do not have to change anything.
- BugFix: shape attribute for bar chart is now properly serialized
- BugFix: date1904 property now properly set for charts
- Added style property to charts
- Removed serialization write test as it most commonly fails when run from the gem's intalled directory
##October.21.11: 1.0.4
- altered package to accept a filename string for serialization instead of a File object.
- Updated specs to conform
- More examples for readme
##October.21.11: 1.0.3 release
- Updated documentation
##October.20.11: 0.1.0 release
|