caxlsx 2.0.2 → 3.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (210) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +125 -30
  3. data/README.md +65 -151
  4. data/Rakefile +9 -11
  5. data/examples/{image1.jpeg → assets/image1.jpeg} +0 -0
  6. data/examples/generate.rb +15 -0
  7. data/lib/axlsx.rb +35 -17
  8. data/lib/axlsx/content_type/abstract_content_type.rb +1 -1
  9. data/lib/axlsx/content_type/content_type.rb +1 -1
  10. data/lib/axlsx/doc_props/app.rb +1 -1
  11. data/lib/axlsx/doc_props/core.rb +5 -5
  12. data/lib/axlsx/drawing/area_chart.rb +99 -0
  13. data/lib/axlsx/drawing/area_series.rb +110 -0
  14. data/lib/axlsx/drawing/axes.rb +1 -1
  15. data/lib/axlsx/drawing/axis.rb +12 -9
  16. data/lib/axlsx/drawing/bar_3D_chart.rb +13 -13
  17. data/lib/axlsx/drawing/bar_chart.rb +143 -0
  18. data/lib/axlsx/drawing/bar_series.rb +12 -14
  19. data/lib/axlsx/drawing/bubble_chart.rb +59 -0
  20. data/lib/axlsx/drawing/bubble_series.rb +63 -0
  21. data/lib/axlsx/drawing/cat_axis.rb +5 -5
  22. data/lib/axlsx/drawing/chart.rb +52 -8
  23. data/lib/axlsx/drawing/d_lbls.rb +4 -4
  24. data/lib/axlsx/drawing/drawing.rb +6 -1
  25. data/lib/axlsx/drawing/graphic_frame.rb +3 -3
  26. data/lib/axlsx/drawing/hyperlink.rb +1 -3
  27. data/lib/axlsx/drawing/line_3D_chart.rb +2 -2
  28. data/lib/axlsx/drawing/line_chart.rb +10 -10
  29. data/lib/axlsx/drawing/line_series.rb +32 -3
  30. data/lib/axlsx/drawing/marker.rb +1 -1
  31. data/lib/axlsx/drawing/num_data.rb +4 -4
  32. data/lib/axlsx/drawing/num_data_source.rb +6 -6
  33. data/lib/axlsx/drawing/num_val.rb +3 -1
  34. data/lib/axlsx/drawing/one_cell_anchor.rb +3 -2
  35. data/lib/axlsx/drawing/pic.rb +25 -19
  36. data/lib/axlsx/drawing/picture_locking.rb +1 -3
  37. data/lib/axlsx/drawing/pie_3D_chart.rb +5 -6
  38. data/lib/axlsx/drawing/pie_series.rb +6 -6
  39. data/lib/axlsx/drawing/scaling.rb +6 -6
  40. data/lib/axlsx/drawing/scatter_chart.rb +10 -10
  41. data/lib/axlsx/drawing/scatter_series.rb +40 -7
  42. data/lib/axlsx/drawing/ser_axis.rb +2 -2
  43. data/lib/axlsx/drawing/series.rb +3 -3
  44. data/lib/axlsx/drawing/series_title.rb +4 -2
  45. data/lib/axlsx/drawing/str_data.rb +3 -3
  46. data/lib/axlsx/drawing/str_val.rb +3 -1
  47. data/lib/axlsx/drawing/title.rb +23 -4
  48. data/lib/axlsx/drawing/two_cell_anchor.rb +6 -1
  49. data/lib/axlsx/drawing/val_axis.rb +1 -1
  50. data/lib/axlsx/drawing/view_3D.rb +2 -2
  51. data/lib/axlsx/drawing/vml_drawing.rb +1 -1
  52. data/lib/axlsx/package.rb +58 -47
  53. data/lib/axlsx/rels/relationship.rb +27 -26
  54. data/lib/axlsx/rels/relationships.rb +7 -4
  55. data/lib/axlsx/stylesheet/border_pr.rb +2 -2
  56. data/lib/axlsx/stylesheet/cell_alignment.rb +1 -3
  57. data/lib/axlsx/stylesheet/cell_protection.rb +1 -3
  58. data/lib/axlsx/stylesheet/cell_style.rb +1 -3
  59. data/lib/axlsx/stylesheet/color.rb +1 -3
  60. data/lib/axlsx/stylesheet/font.rb +11 -3
  61. data/lib/axlsx/stylesheet/gradient_stop.rb +1 -1
  62. data/lib/axlsx/stylesheet/num_fmt.rb +10 -3
  63. data/lib/axlsx/stylesheet/pattern_fill.rb +1 -1
  64. data/lib/axlsx/stylesheet/styles.rb +7 -7
  65. data/lib/axlsx/stylesheet/table_style_element.rb +1 -3
  66. data/lib/axlsx/util/accessors.rb +6 -6
  67. data/lib/axlsx/util/constants.rb +108 -99
  68. data/lib/axlsx/util/mime_type_utils.rb +11 -0
  69. data/lib/axlsx/util/options_parser.rb +2 -1
  70. data/lib/axlsx/util/serialized_attributes.rb +16 -6
  71. data/lib/axlsx/util/simple_typed_list.rb +28 -52
  72. data/lib/axlsx/util/storage.rb +4 -4
  73. data/lib/axlsx/util/validators.rb +31 -19
  74. data/lib/axlsx/util/zip_command.rb +73 -0
  75. data/lib/axlsx/version.rb +1 -1
  76. data/lib/axlsx/workbook/defined_name.rb +11 -12
  77. data/lib/axlsx/workbook/defined_names.rb +2 -2
  78. data/lib/axlsx/workbook/shared_strings_table.rb +5 -5
  79. data/lib/axlsx/workbook/workbook.rb +36 -20
  80. data/lib/axlsx/workbook/workbook_view.rb +80 -0
  81. data/lib/axlsx/workbook/workbook_views.rb +22 -0
  82. data/lib/axlsx/workbook/worksheet/auto_filter/auto_filter.rb +2 -2
  83. data/lib/axlsx/workbook/worksheet/auto_filter/filters.rb +1 -3
  84. data/lib/axlsx/workbook/worksheet/break.rb +1 -3
  85. data/lib/axlsx/workbook/worksheet/cell.rb +164 -75
  86. data/lib/axlsx/workbook/worksheet/cell_serializer.rb +63 -43
  87. data/lib/axlsx/workbook/worksheet/cfvo.rb +1 -3
  88. data/lib/axlsx/workbook/worksheet/cfvos.rb +4 -1
  89. data/lib/axlsx/workbook/worksheet/col.rb +14 -13
  90. data/lib/axlsx/workbook/worksheet/col_breaks.rb +2 -2
  91. data/lib/axlsx/workbook/worksheet/cols.rb +5 -2
  92. data/lib/axlsx/workbook/worksheet/comment.rb +5 -6
  93. data/lib/axlsx/workbook/worksheet/comments.rb +9 -12
  94. data/lib/axlsx/workbook/worksheet/conditional_formatting.rb +1 -1
  95. data/lib/axlsx/workbook/worksheet/conditional_formatting_rule.rb +1 -1
  96. data/lib/axlsx/workbook/worksheet/data_bar.rb +4 -6
  97. data/lib/axlsx/workbook/worksheet/data_validation.rb +8 -6
  98. data/lib/axlsx/workbook/worksheet/dimension.rb +2 -2
  99. data/lib/axlsx/workbook/worksheet/header_footer.rb +6 -8
  100. data/lib/axlsx/workbook/worksheet/icon_set.rb +3 -5
  101. data/lib/axlsx/workbook/worksheet/merged_cells.rb +4 -2
  102. data/lib/axlsx/workbook/worksheet/outline_pr.rb +33 -0
  103. data/lib/axlsx/workbook/worksheet/page_margins.rb +1 -3
  104. data/lib/axlsx/workbook/worksheet/page_set_up_pr.rb +1 -1
  105. data/lib/axlsx/workbook/worksheet/page_setup.rb +21 -23
  106. data/lib/axlsx/workbook/worksheet/pane.rb +1 -3
  107. data/lib/axlsx/workbook/worksheet/pivot_table.rb +44 -28
  108. data/lib/axlsx/workbook/worksheet/pivot_table_cache_definition.rb +4 -4
  109. data/lib/axlsx/workbook/worksheet/print_options.rb +1 -3
  110. data/lib/axlsx/workbook/worksheet/protected_range.rb +1 -3
  111. data/lib/axlsx/workbook/worksheet/protected_ranges.rb +5 -2
  112. data/lib/axlsx/workbook/worksheet/rich_text.rb +55 -0
  113. data/lib/axlsx/workbook/worksheet/rich_text_run.rb +250 -0
  114. data/lib/axlsx/workbook/worksheet/row.rb +42 -52
  115. data/lib/axlsx/workbook/worksheet/row_breaks.rb +2 -2
  116. data/lib/axlsx/workbook/worksheet/selection.rb +1 -3
  117. data/lib/axlsx/workbook/worksheet/sheet_data.rb +3 -1
  118. data/lib/axlsx/workbook/worksheet/sheet_pr.rb +21 -3
  119. data/lib/axlsx/workbook/worksheet/sheet_protection.rb +1 -3
  120. data/lib/axlsx/workbook/worksheet/table.rb +6 -6
  121. data/lib/axlsx/workbook/worksheet/table_style_info.rb +1 -3
  122. data/lib/axlsx/workbook/worksheet/tables.rb +4 -1
  123. data/lib/axlsx/workbook/worksheet/worksheet.rb +76 -81
  124. data/lib/axlsx/workbook/worksheet/worksheet_drawing.rb +10 -10
  125. data/lib/axlsx/workbook/worksheet/worksheet_hyperlinks.rb +3 -3
  126. data/lib/caxlsx.rb +2 -0
  127. data/test/drawing/tc_area_chart.rb +39 -0
  128. data/test/drawing/tc_area_series.rb +71 -0
  129. data/test/drawing/tc_axis.rb +27 -0
  130. data/test/drawing/tc_bar_chart.rb +71 -0
  131. data/test/drawing/tc_bubble_chart.rb +44 -0
  132. data/test/drawing/tc_bubble_series.rb +21 -0
  133. data/test/drawing/tc_chart.rb +23 -10
  134. data/test/drawing/tc_data_source.rb +6 -0
  135. data/test/drawing/tc_drawing.rb +4 -4
  136. data/test/drawing/tc_hyperlink.rb +1 -1
  137. data/test/drawing/tc_line_chart.rb +5 -5
  138. data/test/drawing/tc_line_series.rb +47 -6
  139. data/test/drawing/tc_one_cell_anchor.rb +1 -1
  140. data/test/drawing/tc_pic.rb +11 -15
  141. data/test/drawing/tc_pie_series.rb +2 -1
  142. data/test/drawing/tc_scatter_series.rb +36 -1
  143. data/test/drawing/tc_series_title.rb +21 -0
  144. data/test/drawing/tc_str_val.rb +9 -0
  145. data/test/drawing/tc_title.rb +21 -0
  146. data/test/fixtures/image1.gif +0 -0
  147. data/test/fixtures/image1.jpeg +0 -0
  148. data/test/fixtures/image1.jpg +0 -0
  149. data/test/fixtures/image1.png +0 -0
  150. data/test/fixtures/image1_fake.jpg +0 -0
  151. data/test/rels/tc_relationship.rb +8 -0
  152. data/test/stylesheet/tc_font.rb +14 -2
  153. data/test/stylesheet/tc_styles.rb +29 -3
  154. data/test/tc_axlsx.rb +37 -0
  155. data/test/tc_helper.rb +2 -0
  156. data/test/tc_package.rb +50 -13
  157. data/test/util/tc_mime_type_utils.rb +13 -0
  158. data/test/util/tc_simple_typed_list.rb +2 -3
  159. data/test/util/tc_validators.rb +35 -11
  160. data/test/workbook/tc_defined_name.rb +12 -4
  161. data/test/workbook/tc_shared_strings_table.rb +16 -1
  162. data/test/workbook/tc_workbook.rb +38 -3
  163. data/test/workbook/tc_workbook_view.rb +50 -0
  164. data/test/workbook/worksheet/auto_filter/tc_filters.rb +1 -1
  165. data/test/workbook/worksheet/tc_break.rb +1 -1
  166. data/test/workbook/worksheet/tc_cell.rb +143 -9
  167. data/test/workbook/worksheet/tc_col.rb +18 -3
  168. data/test/workbook/worksheet/tc_conditional_formatting.rb +2 -2
  169. data/test/workbook/worksheet/tc_data_bar.rb +1 -1
  170. data/test/workbook/worksheet/tc_data_validation.rb +11 -11
  171. data/test/workbook/worksheet/tc_header_footer.rb +2 -2
  172. data/test/workbook/worksheet/tc_icon_set.rb +1 -1
  173. data/test/workbook/worksheet/tc_outline_pr.rb +19 -0
  174. data/test/workbook/worksheet/tc_page_setup.rb +3 -3
  175. data/test/workbook/worksheet/tc_pivot_table.rb +21 -6
  176. data/test/workbook/worksheet/tc_print_options.rb +1 -1
  177. data/test/workbook/worksheet/tc_rich_text.rb +44 -0
  178. data/test/workbook/worksheet/tc_rich_text_run.rb +173 -0
  179. data/test/workbook/worksheet/tc_row.rb +24 -2
  180. data/test/workbook/worksheet/tc_sheet_calc_pr.rb +1 -1
  181. data/test/workbook/worksheet/tc_sheet_format_pr.rb +4 -4
  182. data/test/workbook/worksheet/tc_sheet_pr.rb +26 -4
  183. data/test/workbook/worksheet/tc_sheet_protection.rb +5 -5
  184. data/test/workbook/worksheet/tc_sheet_view.rb +4 -4
  185. data/test/workbook/worksheet/tc_table.rb +2 -3
  186. data/test/workbook/worksheet/tc_worksheet.rb +123 -60
  187. metadata +180 -128
  188. data/examples/2010_comments.rb +0 -17
  189. data/examples/anchor_swapping.rb +0 -28
  190. data/examples/auto_filter.rb +0 -16
  191. data/examples/basic_charts.rb +0 -58
  192. data/examples/chart_colors.rb +0 -88
  193. data/examples/colored_links.rb +0 -59
  194. data/examples/conditional_formatting/example_conditional_formatting.rb +0 -74
  195. data/examples/conditional_formatting/getting_barred.rb +0 -37
  196. data/examples/conditional_formatting/hitting_the_high_notes.rb +0 -37
  197. data/examples/conditional_formatting/scaled_colors.rb +0 -39
  198. data/examples/conditional_formatting/stop_and_go.rb +0 -37
  199. data/examples/data_validation.rb +0 -50
  200. data/examples/example.rb +0 -777
  201. data/examples/extractive.rb +0 -45
  202. data/examples/ios_preview.rb +0 -14
  203. data/examples/page_setup.rb +0 -11
  204. data/examples/pivot_table.rb +0 -39
  205. data/examples/sheet_protection.rb +0 -10
  206. data/examples/skydrive/real_example.rb +0 -63
  207. data/examples/styles.rb +0 -66
  208. data/examples/underline.rb +0 -13
  209. data/examples/wrap_text.rb +0 -21
  210. data/lib/axlsx/util/parser.rb +0 -44
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8f41b32f0f196576b4a707597786ac9227f8f6f3c630754d1ec6dcec38137c3b
4
- data.tar.gz: 8d000539c03e2ae7de7a2bd3d9610856abe77b26526e176ddc5e7460d062b98d
3
+ metadata.gz: a1add2e0fe915a49d02b64fe4df1aac62541f75ed27c97d0b418cdea137077c6
4
+ data.tar.gz: d334797649d8ea1382ff2809359b7455cbde69365ecf798de4a51f0cfce903ca
5
5
  SHA512:
6
- metadata.gz: 3c3d57bec5dfdd911a3a052bfe42cdebe672b5f16b797ba43fa0d3dc906920532cc7ee5330aaab84f48112f3ed445c73de57546214cff71a30499d63a54bab81
7
- data.tar.gz: 9bf3940c7dc4bdfcddee151ead1b0bf27b948e8fc0ba6c768ba966b81165446a0c0b0da581132018e75e019d665bdaaf4fe8eb055fb51174601b87320c8143be
6
+ metadata.gz: b164b9fe978fbc8866c3dbeea317c50d93c8b6796eeeb3a6b5214e9c11be439034543e1c1caaf9b4ddbf8a23713398a1bb4c6c207107a77b47353e183f59a226
7
+ data.tar.gz: c3b2eb3c86f0498ce1979bc3898a22baff4ca2e3eb0b9efe4751062fb2cb69ba6b0cfdce72c7366830627b5c912450303abceeb7ca81179781a4f865bd4d8186
@@ -1,14 +1,100 @@
1
1
  CHANGELOG
2
2
  ---------
3
- - **November.25.12**:1.3.4
3
+
4
+ - **Unreleased**
5
+
6
+ - **January.5.21**: 3.0.4
7
+ - [PR #72](https://github.com/caxlsx/caxlsx/pull/72) - Relax Ruby dependency to allow for Ruby 3. This required Travis to be upgraded from Ubuntu Trusty to Ubuntu Bionic. rbx-3 was dropped.
8
+ - [PR #71](https://github.com/caxlsx/caxlsx/pull/71) - Adds date type to validator so sheet.add_data_validation works with date type. Addresses [I #26](https://github.com/caxlsx/caxlsx/issues/26) - Date Data Validation not working
9
+ - [PR #70](https://github.com/caxlsx/caxlsx/pull/70) - Fix worksheet title length enforcement caused by switching from size to bytesize. Addresses [I #67](https://github.com/caxlsx/caxlsx/issues/67) - character length error in worksheet name when using Japanese, which was introduced by addressing [I #588](https://github.com/randym/axlsx/issues/588) in the old Axlsx repo.
10
+
11
+
12
+ - **December.7.20**: 3.0.3
13
+ - [PR #62](https://github.com/caxlsx/caxlsx/pull/62) - Fix edge cases in format detection for objects whose string representation made them look like numbers but the object didn’t respond to `#to_i` or `#to_f`.
14
+ - [PR #56](https://github.com/caxlsx/caxlsx/pull/56) - Add `zip_command` option to `#serialize` for faster serialization of large Excel files by using a zip binary
15
+ - [PR #54](https://github.com/caxlsx/caxlsx/pull/54) - Fix type detection for floats with out-of-rage exponents
16
+ - [I #67](https://github.com/caxlsx/caxlsx/issues/67) - Fix regression in worksheet name length enforcement: Some unicode characters were counted incorrectly, so that names that previously worked fine now stopped working. (This was introduced in 3.0.2)
17
+
18
+ - **July.16.20**: 3.0.2
19
+ - [I #51](https://github.com/caxlsx/caxlsx/issues/51) - Images do not import on Windows. IO read set explicitly to binary mode.
20
+ - [PR #53](https://github.com/caxlsx/caxlsx/pull/53) - Limit column width to 255. Maximum column width limit in MS Excel is 255 characters, see https://support.microsoft.com/en-us/office/excel-specifications-and-limits-1672b34d-7043-467e-8e27-269d656771c3
21
+ - [PR #44](https://github.com/caxlsx/caxlsx/pull/44) - Improve cell autowidth calculations. Previously columns with undefined/auto width would tend to be just slightly too small for the content. This is because certain letters were being excluded from the width calculation because they were deemed not wide enough. We now treat all characters as equal width which helps ensure columns auto-widths are actually large enough for the content. This will gain us a very slight performance improvement because of we are no longer searching the string for specific characters.
22
+
23
+ - **October.4.19**: 3.0.1
24
+ - Support for ruby versions limited to officially supported version (Ruby v2.3+)
25
+ - Updates to dependency gems, especially nokogiri and ruby-zip
26
+ - Fix Relationship.instances cache
27
+ - Autoload fix for Rails
28
+
29
+ - **October.4.19**: 2.0.2
30
+ - Released as caxlsx, fork of axlsx
31
+ - Update ruby-zip dependency (fixes https://github.com/randym/axlsx/issues/536)
32
+
33
+ - **September.17.19**: 3.0.0
34
+ - First release of caxlsx, fork of axlsx
35
+
36
+ - **April.1.17**: 3.0.0-pre
37
+ - Support for ruby versions limited to officially supported version
38
+ - Updates to dependency gems, especially nokogiri and ruby-zip
39
+ - Patch options parsing for two cell anchor
40
+ - Remove support for depreciated worksheet members
41
+ - Added Cell#name so you you can quickly create a defined name for a single cell in your workbook.
42
+ - Added full book view and sheet state management. This means you can specify how the workbook renders as well as manage sheet visibility.
43
+ - Added smoothing management for line charts series
44
+
45
+ - **September.12.13**: 2.0.1
46
+ - Unpinned rubyzip version
47
+
48
+ - **September.12.13**: 2.0.0
49
+ - DROPPED support for ruby 1.8.7
50
+ - Altered readme to link to contributors
51
+ - Lots of improvements to make charts and relations more stable.
52
+ - Patched color param mutation.
53
+ - Data sourced for pivot tables can now come from other sheets.
54
+ - Altered image file extension comparisons to be case insensitive.
55
+ - Added control character sanitization to shared strings.
56
+ - Added page breaks. see examples/example.rb for an example.
57
+ - Bugfix: single to dual cell anchors for images now swap properly so you can set the end_at position during instantiation, in a block or directly on the image.
58
+ - Improved how we convert date/time to include the UTC offset when provided.
59
+ - Pinned rubyzip to 0.9.9 for those who are not ready to go up. Please note that release 2.0.1 and on will be using the 1.n.n series of rubyzip
60
+ - Bugfix: transposition of cells for Worksheet#cols now supports
61
+ incongruent column counts.counts
62
+ - Added space preservation for cell text. This will allow whitespace
63
+ in cell text both when using shared strings and when serializing
64
+ directly to the cell.
65
+
66
+ - **April.24.13**: 1.3.6
67
+ - Fixed LibreOffice/OpenOffice issue to properly apply colors to lines
68
+ in charts.
69
+ - Added support for specifying between/notBetween formula in an array.
70
+ *thanks* straydogstudio!
71
+ - Added standard line chart support. *thanks* scambra
72
+ - Fixed straydogstudio's link in the README. *thanks* nogara!
73
+
74
+ - **February.4.13**: 1.3.5
75
+ - converted vary_colors for chart data to instance variable with appropriate defulats for the various charts.
76
+ - Added trust_input method on Axlsx to instruct the serializer to skip HTML escaping. This will give you a tremendous performance boost,
77
+ Please be sure that you will never have <, >, etc in your content or the XML will be invalid.
78
+ - Rewrote cell serialization to improve performance
79
+ - Added iso_8601 type to support text based date and time management.
80
+ - Bug fix for relationship management in drawings when you add images
81
+ and charts to the same worksheet drawing.
82
+ - Added outline_level_rows and outline_level_columns to worksheet to simplify setting up outlining in the worksheet.
83
+ - Added support for pivot tables
84
+ - Added support for descrete border edge styles
85
+ - Improved validation of sheet names
86
+ - Added support for formula value caching so that iOS and OSX preview can show the proper values. See Cell.add_row and the formula_values option.
87
+
88
+ - **November.25.12**: 1.3.4
4
89
  - Support for headers and footers for worksheets
5
90
  - bug fix: Properly escape hyperlink urls
6
91
  - Improvements in color_scale generation for conditional formatting
7
92
  - Improvements in autowidth calculation.
8
- - **November.8.12**:1.3.3
93
+
94
+ - **November.8.12**: 1.3.3
9
95
  - Patched cell run styles for u and validation for family
10
96
 
11
- - **November.5.12**:1.3.2
97
+ - **November.5.12**: 1.3.2
12
98
  - MASSIVE REFACTORING
13
99
  - Patch for apostrophes in worksheet names
14
100
  - added sheet_by_name for workbook so you can now find your worksheets
@@ -16,6 +102,7 @@ CHANGELOG
16
102
  - added insert_worksheet so you can now add a worksheet to an
17
103
  arbitrary position in the worksheets list.
18
104
  - reduced memory consumption for package parts post serialization
105
+
19
106
  - **September.30.12**: 1.3.1
20
107
  - Improved control character handling
21
108
  - Added stored auto filter values and date grouping items
@@ -24,29 +111,35 @@ CHANGELOG
24
111
  all the predefined table styles.
25
112
  - Improved style management for fonts so they merge undefined values
26
113
  from the initial master.
114
+
27
115
  - **September.8.12**: 1.2.3
28
116
  - enhance exponential float/bigdecimal values rendering as strings intead
29
117
  of 'numbers' in excel.
30
118
  - added support for :none option on chart axis labels
31
119
  - added support for paper_size option on worksheet.page_setup
120
+
32
121
  - **August.27.12**: 1.2.2
33
122
  - minor patch for auto-filters
34
123
  - minor documentation improvements.
124
+
35
125
  - **August.12.12**: 1.2.1
36
126
  - Add support for hyperlinks in worksheets
37
127
  - Fix example that was using old style cell merging with concact.
38
128
  - Fix bug that occurs when calculating the font_size for cells that use a user specified style which does not define sz
129
+
39
130
  - **August.5.12**: 1.2.0
40
131
  - rebuilt worksheet serialization to clean up the code base a bit.
41
132
  - added data labels for charts
42
133
  - added table header printing for each sheet via defined_name. This
43
134
  means that when you print your worksheet, the header rows show for every page
44
- - **July.??.12**: 1.1.9 release
135
+
136
+ - **July.??.12**: 1.1.9
45
137
  - lots of code clean up for worksheet
46
138
  - added in data labels for pie charts, line charts and bar charts.
47
139
  - bugfix chard with data in a sheet that has a space in the name are
48
140
  now auto updating formula based values
49
- - **July.14.12**: 1.1.8 release
141
+
142
+ - **July.14.12**: 1.1.8
50
143
  - added html entity encoding for sheet names. This allows you to use
51
144
  characters like '<' and '&' in your sheet names.
52
145
  - new - first round google docs interoperability
@@ -55,7 +148,8 @@ CHANGELOG
55
148
  to PDF from Libra Office
56
149
  - various readability improvements and work standardizing attribute
57
150
  names to snake_case. Aliases are provided for backward compatiblity
58
- - **June.11.12**: 1.1.7 release
151
+
152
+ - **June.11.12**: 1.1.7
59
153
  - fix chart rendering issue when label offset is specified as a
60
154
  percentage in serialization and ensure that formula are not stored
61
155
  in value caches
@@ -63,7 +157,8 @@ in value caches
63
157
  - Add title property to axis so you can lable the x/y/series axis for
64
158
  charts.
65
159
  - Add sheet views with panes
66
- - **May.30.12**: 1.1.6 release
160
+
161
+ - **May.30.12**: 1.1.6
67
162
  - data protection with passwords for sheets
68
163
  - cell level input validators
69
164
  - added support for two cell anchors for images
@@ -73,14 +168,15 @@ in value caches
73
168
  - added ph (phonetics) and s (style) attributes for row.
74
169
  - resolved all warnings generating from this gem.
75
170
  - improved comment relationship management for multiple comments
76
- - **May.13.12**: 1.1.5 release
171
+
172
+ - **May.13.12**: 1.1.5
77
173
  - MOAR print options! You can now specify paper size, orientation,
78
174
  fit to width, page margings and gridlines for printing.
79
175
  - Support for adding comments to your worksheets
80
176
  - bugfix for applying style to empty cells
81
177
  - bugfix for parsing formula with multiple '='
82
178
 
83
- - **May.3.12:**: 1.1.4 release
179
+ - **May.3.12:**: 1.1.4
84
180
  - MOAR examples
85
181
  - added outline level for rows and columns
86
182
  - rebuild of numeric and axis data sources for charts
@@ -92,23 +188,23 @@ in value caches
92
188
  - Added support for specifying the color of data series in charts.
93
189
  - bugfix using add_cell on row mismanaged calls to update_column_info.
94
190
 
95
- - ** April.25.12:**: 1.1.3 release
191
+ - ** April.25.12:**: 1.1.3
96
192
  - Primarily because I am stupid.....Updates to readme to properly report version, add in missing docs and restructure example directory.
97
193
 
98
- - ** April.25.12:**: 1.1.2 release
194
+ - ** April.25.12:**: 1.1.2
99
195
  - Conditional Formatting completely implemented.
100
196
  - refactoring / documentation for Style#add_style
101
197
  - added in label rotation for chart axis labels
102
198
  - bugfix to properly assign style and type info to cells when only partial information is provided in the types/style option
103
199
 
104
- - ** April.18.12**: 1.1.1 release
200
+ - ** April.18.12**: 1.1.1
105
201
  - bugfix for autowidth calculations across multiple rows
106
202
  - bugfix for dimension calculations with nil cells.
107
203
  - REMOVED RMAGICK dependency WOOT!
108
204
  - Update readme to show screenshot of gem output.
109
205
  - Cleanup benchmark and add benchmark rake task
110
206
 
111
- - ** April.3.12**: 1.1.0 release
207
+ - ** April.3.12**: 1.1.0
112
208
  - bugfix patch name_to_indecies to properly handle extended ranges.
113
209
  - bugfix properly serialize chart title.
114
210
  - lower rake minimum requirement for 1.8.7 apps that don't want to move on to 0.9 NOTE this will be reverted for 2.0.0 with workbook parsing!
@@ -123,7 +219,7 @@ in value caches
123
219
  - Major (like 7x faster!) performance updates.
124
220
  - Gem now supports for JRuby 1.6.7, as well as experimental support for Rubinius
125
221
 
126
- - ** March.5.12**: 1.0.18 release
222
+ - ** March.5.12**: 1.0.18
127
223
  https://github.com/randym/axlsx/compare/1.0.17...1.0.18
128
224
  - bugfix custom borders are not properly applied when using styles.add_style
129
225
  - interop worksheet names must be 31 characters or less or some versions of office complain about repairs
@@ -133,14 +229,14 @@ in value caches
133
229
  - added << alias for add_row
134
230
  - removed presetting of date1904 based on authoring platform. Now defaults to use 1900 epoch (date1904 = false)
135
231
 
136
- - ** February.14.12**: 1.0.17 release
232
+ - ** February.14.12**: 1.0.17
137
233
  https://github.com/randym/axlsx/compare/1.0.16...1.0.17
138
234
  - Added in support for serializing to StringIO
139
235
  - Added in support for using shared strings table. This makes most of the features in axlsx interoperable with iWorks Numbers
140
236
  - Added in support for fixed column_widths
141
237
  - Removed unneeded dependencies on active-support and i18n
142
238
 
143
- - ** February.2.12**: 1.0.16 release
239
+ - ** February.2.12**: 1.0.16
144
240
  https://github.com/randym/axlsx/compare/1.0.15...1.0.16
145
241
  - Bug fix for schema file locations when validating in rails
146
242
  - Added hyperlink to images
@@ -148,14 +244,14 @@ in value caches
148
244
  - removed whitespace/indentation from xml outputs
149
245
  - col_style now skips rows that do not contain cells at the column index
150
246
 
151
- - **January.6.12**: 1.0.15 release
247
+ - **January.6.12**: 1.0.15
152
248
  https://github.com/randym/axlsx/compare/1.0.14...1.0.15
153
249
  - Bug fix add_style specified number formats must be explicity applied for libraOffice
154
250
  - performance improvements from ochko when creating cells with options.
155
251
  - Bug fix setting types=>[:n] when adding a row incorrectly determines the cell type to be string as the value is null during creation.
156
252
  - Release in preparation for password protection merge
157
253
 
158
- - **December.14.11**: 1.0.14 release
254
+ - **December.14.11**: 1.0.14
159
255
  - Added support for merging cells
160
256
  - Added support for auto filters
161
257
  - Improved auto width calculations
@@ -164,14 +260,14 @@ in value caches
164
260
  - Added access to app and core package objects so you can set the creator and other properties of the package
165
261
  - The beginning of password protected xlsx files - roadmapped for January release.
166
262
 
167
- - **December.8.11**: 1.0.13 release
263
+ - **December.8.11**: 1.0.13
168
264
  - Fixing .gemspec errors that caused gem to miss the lib directory. Sorry about that.
169
265
 
170
- - **December.7.11**: 1.0.12 release
266
+ - **December.7.11**: 1.0.12
171
267
  DO NOT USE THIS VERSION = THE GEM IS BROKEN
172
268
  - changed dependency from 'zip' gem to 'rubyzip' and added conditional code to force binary encoding to resolve issue with excel 2011
173
269
  - Patched bug in app.xml that would ignore user specified properties.
174
- - **December.5.11**: 1.0.11 release
270
+ - **December.5.11**: 1.0.11
175
271
  - Added [] methods to worksheet and workbook to provide name based access to cells.
176
272
  - Added support for functions as cell values
177
273
  - Updated color creation so that two character shorthand values can be used like 'FF' for 'FFFFFFFF' or 'D8' for 'FFD8D8D8'
@@ -179,7 +275,7 @@ in value caches
179
275
  - Clean up and support for 1.9.2 and travis integration
180
276
  - Added support for string based cell referencing to chart start_at and end_at. That means you can now use :start_at=>"A1" when using worksheet.add_chart, or chart.start_at ="A1" in addition to passing a cell or the x, y coordinates.
181
277
 
182
- - **October.30.11**: 1.0.10 release
278
+ - **October.30.11**: 1.0.10
183
279
  - Updating gemspec to lower gem version requirements.
184
280
  - Added row.style assignation for updating the cell style for an entire row
185
281
  - Added col_style method to worksheet upate a the style for a column of cells
@@ -189,11 +285,11 @@ in value caches
189
285
  - fixed out of range bug in time calculations for 32bit time.
190
286
  - added i18n for active support
191
287
 
192
- - **October.26.11**: 1.0.9 release
288
+ - **October.26.11**: 1.0.9
193
289
  - Updated to support ruby 1.9.3
194
290
  - Updated to eliminate all warnings originating in this gem
195
291
 
196
- - **October.23.11**: 1.0.8 release
292
+ - **October.23.11**: 1.0.8
197
293
  - Added support for images (jpg, gif, png) in worksheets.
198
294
 
199
295
  - **October.23.11**: 1.0.7 released
@@ -207,10 +303,10 @@ in value caches
207
303
  - 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.
208
304
  - Refactored cat and val axis data to keep series serialization a bit more DRY
209
305
 
210
- ##October.22.11: 1.0.6 release
306
+ - **October.22.11**: 1.0.6
211
307
  - Bumping version to include docs. Bug in gemspec pointing to incorrect directory.
212
308
 
213
- ##October.22.11: 1.05
309
+ - **October.22.11**: 1.05
214
310
  - Added support for line charts
215
311
  - Updated examples and readme
216
312
  - Updated series title to be a real title ** NOTE ** If you are accessing titles directly you will need to update text assignation.
@@ -226,14 +322,13 @@ in value caches
226
322
  - Added style property to charts
227
323
  - Removed serialization write test as it most commonly fails when run from the gem's intalled directory
228
324
 
229
- ##October.21.11: 1.0.4
325
+ - **October.21.11**: 1.0.4
230
326
  - altered package to accept a filename string for serialization instead of a File object.
231
327
  - Updated specs to conform
232
328
  - More examples for readme
233
329
 
234
330
 
235
- ##October.21.11: 1.0.3 release
331
+ - **October.21.11**: 1.0.3
236
332
  - Updated documentation
237
333
 
238
- ##October.20.11: 0.1.0 release
239
-
334
+ - **October.20.11**: 0.1.0
data/README.md CHANGED
@@ -1,84 +1,35 @@
1
- Axlsx: Office Open XML Spreadsheet Generation
2
- ====================================
3
- [![Build Status](https://secure.travis-ci.org/randym/axlsx.png?branch=master)](http://travis-ci.org/randym/axlsx/)
1
+ # Caxlsx (Community Continued Version)
2
+ [![Build Status](https://travis-ci.com/caxlsx/caxlsx.svg?branch=master)](https://travis-ci.com/caxlsx/caxlsx)
3
+ [![Gem
4
+ Version](https://badge.fury.io/rb/caxlsx.svg)](http://badge.fury.io/rb/caxlsx)
4
5
 
5
- If you are using axlsx for comercial purposes, or just want to show your
6
- appreciation for the gem, please don't hesitate to make a donation.
6
+ ## Notice: Community Axlsx Organization
7
7
 
8
- [![Click here to lend your support to: axlsx and make a donation at www.pledgie.com !](http://www.pledgie.com/campaigns/17814.png?skin_name=chrome)](http://www.pledgie.com/campaigns/17814)
8
+ To better maintain the Axlsx ecosystem, all related gems have been forked or moved to the following community organization:
9
9
 
10
- **IRC**:[irc.freenode.net / #axlsx](irc://irc.freenode.net/axlsx)
10
+ http://github.com/caxlsx
11
11
 
12
- **Git**:[http://github.com/randym/axlsx](http://github.com/randym/axlsx)
12
+ [Join the Caxlsx Slack channel](https://join.slack.com/t/caxlsx/shared_invite/enQtOTI5OTM0MzI1Njk5LTBlMDQzNDk2YzkwODMxMmVkODMyYzJiZGU5NTQ3YTg5NTBlN2IwZTlmNTRjNzhiY2E0MDY2OTEyYmFlODI5NjA)
13
13
 
14
- **Twitter**: [https://twitter.com/#!/morgan_randy](https://twitter.com/#!/morgan_randy)
15
-
16
- **Google Group**: [https://groups.google.com/forum/?fromgroups#!forum/axlsx](https://groups.google.com/forum/?fromgroups#!forum/axlsx)
17
-
18
- **Author**: Randy Morgan
19
-
20
- **Copyright**: 2011 - 2013
21
-
22
- **License**: MIT License
23
-
24
- **Latest Version**: 2.0.1
25
-
26
- **Ruby Version**: 1.9.2, 1.9.3, 2.0.0
27
-
28
- **JRuby Version**: 1.9 modes
29
-
30
- **Rubinius Version**: rubinius 2.0.0dev * lower versions may run, this gem always tests against head.
31
-
32
- **Release Date**: September 12th 2013
33
-
34
- If you are working in rails, or with active record see:
35
- [acts_as_xlsx](http://github.com/randym/acts_as_xlsx)
36
-
37
- acts_as_xlsx is a simple ActiveRecord mixin that lets you generate a workbook with:
38
-
39
- ```ruby
40
- Posts.where(created_at > Time.now-30.days).to_xlsx
41
- ```
42
-
43
- ** and **
44
-
45
- * http://github.com/straydogstudio/axlsx_rails
46
- Axlsx_Rails provides an Axlsx renderer so you can move all your spreadsheet code from your controller into view files. Partials are supported so you can organize any code into reusable chunks (e.g. cover sheets, common styling, etc.) You can use it with acts_as_xlsx, placing the to_xlsx call in a view and add ':package => xlsx_package' to the parameter list. Now you can keep your controllers thin!
47
-
48
- There are guides for using axlsx and acts_as_xlsx here:
49
- [http://axlsx.blog.randym.net](http://axlsx.blog.randym.net)
50
-
51
- If you are working with ActiveAdmin see:
52
-
53
- [activeadmin_axlsx](http://github.com/randym/activeadmin_axlsx)
54
-
55
- It provies a plugin and dsl for generating downloadable reports.
56
-
57
- The examples directory contains a number of more specific examples as
58
- well.
59
-
60
- Synopsis
61
- --------
14
+ ## Synopsis
62
15
 
63
16
  Axlsx is an Office Open XML Spreadsheet generator for the Ruby programming language.
64
17
  With Axlsx you can create excel worksheets with charts, images (with links), automated and fixed column widths, customized styles, functions, tables, conditional formatting, print options, comments, merged cells, auto filters, file and stream serialization as well as full schema validation. Axlsx excels at helping you generate beautiful Office Open XML Spreadsheet documents without having to understand the entire ECMA specification.
65
18
 
66
- ![Screen 1](https://github.com/randym/axlsx/raw/master/examples/sample.png)
67
-
19
+ ![Screen 1](https://github.com/caxlsx/caxlsx/raw/master/examples/sample.png)
68
20
 
69
21
 
70
- Feature List
71
- ------------
22
+ ## Feature List
72
23
 
73
- 1. Author xlsx documents: Axlsx is made to let you easily and quickly generate professional xlsx based reports that can be validated before serialization.
24
+ 1. Author xlsx documents: Caxlsx is made to let you easily and quickly generate professional xlsx based reports that can be validated before serialization.
74
25
 
75
- 2. Generate 3D Pie, Line, Scatter and Bar Charts: With Axlsx chart generation and management is as easy as a few lines of code. You can build charts based off data in your worksheet or generate charts without any data in your sheet at all. Customize gridlines, label rotation and series colors as well.
26
+ 2. Generate 3D Pie, Line, Scatter and Bar Charts: With Caxlsx chart generation and management is as easy as a few lines of code. You can build charts based off data in your worksheet or generate charts without any data in your sheet at all. Customize gridlines, label rotation and series colors as well.
76
27
 
77
28
  3. Custom Styles: With guaranteed document validity, you can style borders, alignment, fills, fonts, and number formats in a single line of code. Those styles can be applied to an entire row, or a single cell anywhere in your workbook.
78
29
 
79
- 4. Automatic type support: Axlsx will automatically determine the type of data you are generating. In this release Float, Integer, String, Date, Time and Boolean types are automatically identified and serialized to your spreadsheet.
30
+ 4. Automatic type support: Caxlsx will automatically determine the type of data you are generating. In this release Float, Integer, String, Date, Time and Boolean types are automatically identified and serialized to your spreadsheet.
80
31
 
81
- 5. Automatic and fixed column widths: Axlsx will automatically determine the appropriate width for your columns based on the content in the worksheet, or use any value you specify for the really funky stuff.
32
+ 5. Automatic and fixed column widths: Caxlsx will automatically determine the appropriate width for your columns based on the content in the worksheet, or use any value you specify for the really funky stuff.
82
33
 
83
34
  6. Support for automatically formatted 1904 and 1900 epochs configurable in the workbook.
84
35
 
@@ -114,18 +65,14 @@ and Numbers
114
65
 
115
66
  22. Page Breaks
116
67
 
117
- Installing
118
- ----------
119
68
 
120
- To install Axlsx, use the following command:
69
+ ## Install
121
70
 
122
- $ gem install axlsx
123
-
124
- #Examples
125
- ------
71
+ ```ruby
72
+ gem 'caxlsx'
73
+ ```
126
74
 
127
- The example listing is getting overly large to maintain here.
128
- If you are using Yard, you will be able to see the examples in line below.
75
+ ## Usage
129
76
 
130
77
  Here's a teaser that kicks about 2% of what the gem can do.
131
78
 
@@ -142,72 +89,40 @@ Axlsx::Package.new do |p|
142
89
  end
143
90
  ```
144
91
 
145
- Please see the [examples](https://github.com/randym/axlsx/tree/master/examples/example.rb) for more.
146
-
147
- {include:file:examples/example.rb}
148
-
149
- There is much, much more you can do with this gem. If you get stuck, grab me on IRC or submit an issue to GitHub. Chances are that it has already been implemented. If it hasn't - let's take a look at adding it in.
150
-
151
- #Documentation
152
- --------------
153
-
154
- This gem is 100% documented with YARD, an exceptional documentation library. To see documentation for this, and all the gems installed on your system use:
155
-
156
- gem install yard
157
-
158
- yard server -g
159
-
160
- #Specs
161
- ------
162
-
163
- This gem has 100% test coverage using test/unit. To execute tests for this gem, simply run rake in the gem directory.
164
-
165
- #Change log
166
- ---------
167
-
168
- - **September.12.13**:2.0.1
169
- - Unpinned rubyzip version
170
- - **September.12.13**:2.0.0
171
- - DROPPED support for ruby 1.8.7
172
- - Altered readme to link to contributors
173
- - Lots of improvements to make charts and relations more stable.
174
- - Patched color param mutation.
175
- - Data sourced for pivot tables can now come from other sheets.
176
- - Altered image file extension comparisons to be case insensitive.
177
- - Added control character sanitization to shared strings.
178
- - Added page breaks. see examples/example.rb for an example.
179
- - Bugfix: single to dual cell anchors for images now swap properly so you can set the end_at position during instantiation, in a block or directly on the image.
180
- - Improved how we convert date/time to include the UTC offset when provided.
181
- - Pinned rubyzip to 0.9.9 for those who are not ready to go up. Please note that release 2.0.1 and on will be using the 1.n.n series of rubyzip
182
- - Bugfix: transposition of cells for Worksheet#cols now supports
183
- incongruent column counts.counts
184
- - Added space preservation for cell text. This will allow whitespace
185
- in cell text both when using shared strings and when serializing
186
- directly to the cell.
187
- - **April.24.13**:1.3.6
188
- - Fixed LibreOffice/OpenOffice issue to properly apply colors to lines
189
- in charts.
190
- - Added support for specifying between/notBetween formula in an array.
191
- *thanks* straydogstudio!
192
- - Added standard line chart support. *thanks* scambra
193
- - Fixed straydogstudio's link in the README. *thanks* nogara!
194
- - **February.4.13**:1.3.5
195
- - converted vary_colors for chart data to instance variable with appropriate defulats for the various charts.
196
- - Added trust_input method on Axlsx to instruct the serializer to skip HTML escaping. This will give you a tremendous performance boost,
197
- Please be sure that you will never have <, >, etc in your content or the XML will be invalid.
198
- - Rewrote cell serialization to improve performance
199
- - Added iso_8601 type to support text based date and time management.
200
- - Bug fix for relationahip management in drawings when you add images
201
- and charts to the same worksheet drawing.
202
- - Added outline_level_rows and outline_level_columns to worksheet to simplify setting up outlining in the worksheet.
203
- - Added support for pivot tables
204
- - Added support for descrete border edge styles
205
- - Improved validation of sheet names
206
- - Added support for formula value caching so that iOS and OSX preview can show the proper values. See Cell.add_row and the formula_values option.
207
-
208
- Please see the {file:CHANGELOG.md} document for past release information.
209
-
210
- # Known interoperability issues.
92
+ Please see the [examples folder](https://github.com/caxlsx/caxlsx/tree/master/examples) for further information on what you can do with this gem Chances are that it has already been implemented. If it hasn't, let's take a look at adding it in.
93
+
94
+ ## Documentation
95
+
96
+ Detailed documentation is available at:
97
+
98
+ [https://www.rubydoc.info/gems/caxlsx/](https://www.rubydoc.info/gems/caxlsx/)
99
+
100
+ Additional documentation is listed below:
101
+
102
+ - [Examples](https://github.com/caxlsx/caxlsx/tree/master/examples)
103
+ - [FAQ](https://github.com/caxlsx/caxlsx/wiki/FAQ) (work in progress)
104
+ - [Style Reference](https://github.com/caxlsx/caxlsx/blob/master/docs/style_reference.md)
105
+ - [Header and Footer Codes](https://github.com/caxlsx/caxlsx/blob/master/docs/header_and_footer_codes.md)
106
+
107
+ ⚠ Please __do not create issues__ for questions regarding the usage of axlsx / caxlsx. Look through this README, the [examples](https://github.com/caxlsx/caxlsx/tree/master/examples/example.rb), and the [FAQ](https://github.com/caxlsx/caxlsx/wiki/FAQ), and also check [questions tagged `axlsx` on Stack Overflow](https://stackoverflow.com/questions/tagged/axlsx).
108
+
109
+ Feel free to add your question (including an answer!) to the FAQ if you think it is of general interest.
110
+
111
+ ## Plugins, Integrations, and Extensions
112
+
113
+ Currently the following additional gems are available:
114
+
115
+ - [acts_as_caxlsx](https://github.com/caxlsx/acts_as_caxlsx)
116
+ * Provides simple ActiveRecord integration
117
+ - [caxlsx_rails](https://github.com/caxlsx/caxlsx_rails)
118
+ * Provides a `.axlsx` renderer to Rails so you can move all your spreadsheet code from your controller into view files.
119
+ - [activeadmin-caxlsx](https://github.com/caxlsx/activeadmin-caxlsx)
120
+ * An Active Admin plugin that includes DSL to create downloadable reports.
121
+ - [axlsx_styler](https://github.com/axlsx-styler-gem/axlsx_styler)
122
+ * Allows you to build clean and maintainable styles for your axlsx spreadsheets. Build your spreadsheeet with data and then apply styles later.
123
+
124
+ ## Known Software Interoperability Issues
125
+
211
126
  As axslx implements the Office Open XML (ECMA-376 spec) much of the
212
127
  functionality is interoperable with other spreadsheet software. Below is
213
128
  a listing of some known issues.
@@ -224,9 +139,9 @@ related to themes, which axlsx does not implement at this time.
224
139
  - Images are known to not work with google docs
225
140
  - border colors do not work
226
141
 
227
- 3. Numbers
228
- - you must set 'use_shared_strings' to true. This is most
229
- conveniently done just before rendering by calling Package.use_shared_strings = true prior to serialization.
142
+ 3. Apple Numbers
143
+ - charts do not render
144
+ - you must set 'use_shared_strings' to true. This is most conveniently done just before rendering by calling Package.use_shared_strings = true prior to serialization.
230
145
 
231
146
  ```ruby
232
147
  p = Axlsx::Package.new
@@ -238,19 +153,18 @@ p.use_shared_strings = true
238
153
  p.serialize('simple.xlsx')
239
154
  ```
240
155
 
241
- - charts do not render
156
+ ## Known Bugs
242
157
 
158
+ There’s a [list of known bugs](https://github.com/caxlsx/caxlsx/issues?q=label%3A%22known+bug%22). (If you want to contribute to caxlsx, this is a good place to start!)
243
159
 
244
- #Thanks!
160
+ ## Contributing
245
161
 
246
- Open source software is a community effort. None of this could have been
247
- done without the help of these awesome folks.
162
+ See [CONTRIBUTING.md](https://github.com/caxlsx/caxlsx/blob/master/CONTRIBUTING.md)
248
163
 
249
- [contributors](https://github.com/randym/axlsx/graphs/contributors)
164
+ ## Credits
250
165
 
251
- #Copyright and License
252
- ----------
166
+ Originally created by Randy Morgan - @randym
253
167
 
254
- Axlsx &copy; 2011-2013 by [Randy Morgan](mailto:digial.ipseity@gmail.com).
168
+ Forked in 2019, to enable the community to maintain the Axlsx ecosystem - http://github.com/caxlsx
255
169
 
256
- Axlsx is licensed under the MIT license. Please see the LICENSE document for more information.
170
+ Open source software is a community effort. None of this could have been done without the help of [our Contributors](https://github.com/caxlsx/caxlsx/graphs/contributors).