| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-03-03 | Fix comments | Brad Stewart | |
| 2015-03-03 | Allow legend position to be set on charts | Brad Stewart | |
| 2015-02-21 | Background color option for charts | shifakhan | |
| 2015-02-11 | Fix content types for uppercased image file extensions | Edgars Beigarts | |
| 2015-01-28 | Make alpha option accessible for pictures 0 = transparent ... 100000 = opaque | Alan Kessler | |
| 2015-01-12 | Fix #fit_to to work correctly and fix tests under Ruby 2.2.0 | Jurriaan Pruis | |
| 9999 is too big | |||
| 2014-12-10 | Typo in row.rb | Gary Holtz | |
| "sell" should be "cell" | |||
| 2014-10-29 | Skip to_time if the value is a Time instance | Soutaro Matsumoto | |
| This skips calling `#to_time` if the value is a instance of subclass of `Time`, like `ActiveSupport::TimeWithZone`. | |||
| 2014-08-12 | Add support for enabling or disabling smoothed lines in a scatter chart series | Ian Anderson | |
| 2014-07-29 | Allow custom marker symbol shapes on chart | mfrank01 | |
| 2014-07-29 | Allow multiple autofilters per workbook | mfrank01 | |
| 2014-04-04 | Use #booleanize | Jurriaan Pruis | |
| 2014-04-04 | Fix boolean values so the output matches Excel and works on Numbers | Jurriaan Pruis | |
| Use 1 or 0 instead of 'true' or 'false' in the XML output | |||
| 2014-03-17 | Fix RichText warning | Jurriaan Pruis | |
| 2014-03-17 | Update to RubyZip 1.1.1 | Jurriaan Pruis | |
| 2014-03-12 | Fix autowidth in combination with sanitizing | Jurriaan Pruis | |
| By only sanitizing just before serialisation. | |||
| 2014-03-05 | Small fixes | Jurriaan Pruis | |
| 2014-03-04 | Fix cell merging, #179 | Jurriaan Pruis | |
| 2014-03-04 | sourceLinked should be false (0) when specifying a format_code for an axis | Chris Roby | |
| 2014-03-04 | Merge pull request #295 from tafryn/arrayformula | Jurriaan Pruis | |
| Added array formula support | |||
| 2014-03-04 | Fix sanitizing and some cleanup | Jurriaan Pruis | |
| 2014-03-03 | Add support for array formulas. | tafryn | |
| 2014-03-01 | Implemented RichText (multiple text runs) | Jurriaan Pruis | |
| and added multiline autowidth for both RichText and normal strings | |||
| 2014-02-26 | Huge refactoring | Jurriaan Pruis | |
| Do not create huge strings Let Row inherit from SimpleTypedList Optimized sanitizing Optimized validation And more.. | |||
| 2014-02-26 | Ensure auto_filter defined name is correctly added to workbook (refs #285) | Jonathan Tron | |
| 2014-02-26 | Add auto_filter defined name in `Axlsx::Worksheet#to_xml_string` (refs #285) | Jonathan Tron | |
| The way ot was done previously (adding the defined name on `Axlsx::Worksheet#auto_filter=`) meant that it was added only when using this method. But it's possible to assign range on the auto-created `AutoFilter` with: ```ruby workheet.auto_filter.range = "A1:B2" ``` In this case the defined name was never added to the workbook. | |||
| 2014-02-26 | Fix wrong value for auto_filter defined name (refs #285) | Jonathan Tron | |
| 2014-02-26 | Add missing change from 4400e233c (refs #285) | Jonathan Tron | |
| 2014-02-26 | Do not put Axlsx::DefinedName#name in serialized_attributes (fixes #285) | Jonathan Tron | |
| When using serialized_attributes both attribute's name and value are camelcased, in `Axlsx::DefinedName` the values starts with `_xmln` which is then transformed in `Xmln`. The fix proposed on #285 does not work because then other `Axlsx::DefinedName` attributes name are no more camelcased (`localSheetId` become `local_sheet_id` for instance). As proposed by @randym in #285, this commit only make a special case of the name and let the other attributes go through serialized_attributes. Adding a test on it revealed a wrong test which would have catched similar error but was not because of value returned by `doc.xpath`. | |||
| 2014-02-04 | Column_widths must be set after add_row is called | Will Bradley | |
| Fixes https://github.com/randym/axlsx/issues/165 | |||
| 2014-01-23 | fixing comments for 2010 starter edition | Dustin Smith | |
| 2014-01-08 | Fixing typo in documentation. ws.styles!! | Sudhir | |
| Replaced ws.style with ws.styles. | |||
| 2014-01-06 | Update header_footer.rb | Andrew Grimm | |
| Fix documentation. | |||
| 2013-11-04 | Merge pull request #255 from skateinmars/fix-scatterchart-axes | Randy Morgan (@morgan_randy) | |
| Fix ScatterChart#y_val_axis returning the wrong axis | |||
| 2013-10-10 | Do not use a marker tag in bubble series tags | Jean-Philippe Moal | |
| As per the spec, a bubble series tag should not include a marker tag. This was preventing files from being open with Excel Viewer. | |||
| 2013-10-09 | Fix ScatterChart#y_val_axis returning the wrong axis | Jean-Philippe Moal | |
| The y_val_axis method was returning the x axis instead of the y axis. | |||
| 2013-10-09 | Add support for bubble charts | Jean-Philippe Moal | |
| 2013-09-30 | add name attribute to cell to create defined names for a single cell. ↵ | Randy Morgan | |
| https://github.com/randym/axlsx/issues/241 | |||
| 2013-09-29 | Integrate workbook views and alter serialization | Randy Morgan | |
| This integrates workbook views and sheet state into serialization. I also noticed that we were populating defined names during serialization. While it is good to delay this as late as possible as there is always the chance that some conditional programming by the consumer adds, and then removes an autofilter, I am choosing to risk it at this point for cleaner code. | |||
| 2013-09-29 | Added workbook views collection and workbook view object | Randy Morgan | |
| 2013-09-29 | add validation for Worksheet#state and WorkbookView#visibility | Randy Morgan | |
| 2013-09-27 | smooth line for line chart | patorash | |
| 2013-09-26 | extended examples and smooth lines for line chart | Randy Morgan | |
| 2013-09-13 | bump the version and get onto 1.0.0 | Randy Morgan | |
| 2013-09-13 | initialize subtotal to remove warnings | Randy Morgan | |
| 2013-09-13 | version 2.0.0 | Randy Morgan | |
| 2013-09-13 | Add support for automatically adjusting serialized times and dates to ↵ | Randy Morgan | |
| account for the zone | |||
| 2013-09-13 | remove stupidity, remove warning | Randy Morgan | |
| 2013-09-13 | Bring documentation up to 100% | Randy Morgan | |
| 2013-09-13 | repair pivot table data ref populate and bring coverage back up to 100% | Randy Morgan | |
