summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2014-12-11Merge pull request #363 from garymh/patch-1Jurriaan Pruis
Typo in row.rb
2014-12-10Typo in row.rbGary Holtz
"sell" should be "cell"
2014-10-29Skip to_time if the value is a Time instanceSoutaro Matsumoto
This skips calling `#to_time` if the value is a instance of subclass of `Time`, like `ActiveSupport::TimeWithZone`.
2014-10-15Added an example of row heightRishi
An example for changing the row height was missing. I thought it would make sense to have this in example as well. I needed the option and I have to look at the code to how to do it. I think it would help others.
2014-08-15Fix syntax error in scatter series testsIan Anderson
2014-08-12Add support for enabling or disabling smoothed lines in a scatter chart seriesIan Anderson
2014-08-01Add example and test for auto filters on multiple worksheet (refs #338)Jonathan Tron
2014-08-01Merge pull request #338 from mfrank01/masterJonathan Tron
Allow multiple autofilters per workbook
2014-07-29Allow custom marker symbol shapes on chartmfrank01
2014-07-29Allow multiple autofilters per workbookmfrank01
2014-04-14Merge pull request #314 from elia/patch-1Jurriaan Pruis
Fix some README links
2014-04-11Fix some README linksElia Schito
2014-04-04Use #booleanizeJurriaan Pruis
2014-04-04Fix boolean values so the output matches Excel and works on NumbersJurriaan Pruis
Use 1 or 0 instead of 'true' or 'false' in the XML output
2014-03-17Merge pull request #304 from jurriaan/rubyzip-updateJurriaan Pruis
Update to RubyZip 1.1.1
2014-03-17Fix RichText warningJurriaan Pruis
2014-03-17Update to RubyZip 1.1.1Jurriaan Pruis
2014-03-12Merge pull request #301 from jurriaan/autowidthfixJurriaan Pruis
Fix autowidth in combination with sanitizing
2014-03-12Fix autowidth in combination with sanitizingJurriaan Pruis
By only sanitizing just before serialisation.
2014-03-07Merge pull request #299 from geruhl/patch-1Randy Morgan (@morgan_randy)
Fix conditional_formatting example file
2014-03-06Fix conditional_formatting example filegeruhl
- change profitable hex color code to a legal 6 digit # (428751 = green) - "wb" and "sheet" are not created in this example, change to "book" and "ws"
2014-03-05Merge pull request #297 from jurriaan/small-fixesJurriaan Pruis
Small fixes & cleanup
2014-03-05Small fixesJurriaan Pruis
2014-03-04Merge pull request #296 from jurriaan/fix-cell-mergeJurriaan Pruis
Fix cell merging, #179
2014-03-04Fix cell merging, #179Jurriaan Pruis
2014-03-04Merge pull request #162 from croby/format_codeJurriaan Pruis
sourceLinked should be false (0) when specifying a format_code for an axis
2014-03-04Add tests for checking formatting and sourceLinked properties when setting ↵Chris Roby
formatting on an axis
2014-03-04sourceLinked should be false (0) when specifying a format_code for an axisChris Roby
2014-03-04Merge pull request #295 from tafryn/arrayformulaJurriaan Pruis
Added array formula support
2014-03-04Array forumla tests.tafryn
2014-03-04Merge pull request #294 from jurriaan/richtext-fixesJurriaan Pruis
Fix sanitizing and some cleanup
2014-03-04Fix sanitizing and some cleanupJurriaan Pruis
2014-03-03Add support for array formulas.tafryn
2014-03-01Merge pull request #291 from jurriaan/richtextJurriaan Pruis
Implemented RichText (multiple text runs)
2014-03-01Implemented RichText (multiple text runs)Jurriaan Pruis
and added multiline autowidth for both RichText and normal strings
2014-02-26Merge pull request #288 from jurriaan/refactoringJurriaan Pruis
Huge refactoring
2014-02-26Huge refactoringJurriaan Pruis
Do not create huge strings Let Row inherit from SimpleTypedList Optimized sanitizing Optimized validation And more..
2014-02-26Ensure auto_filter defined name is correctly added to workbook (refs #285)Jonathan Tron
2014-02-26Add 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-26Fix wrong value for auto_filter defined name (refs #285)Jonathan Tron
2014-02-26Add missing change from 4400e233c (refs #285)Jonathan Tron
2014-02-26Do 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-08Merge pull request #281 from pirvudoru/axlsx-280Randy Morgan (@morgan_randy)
[#280] Updates rubyzip dependency
2014-02-04Merge pull request #282 from zyphlar/masterRandy Morgan (@morgan_randy)
Column_widths must be set after add_row is called
2014-02-04Column_widths must be set after add_row is calledWill Bradley
Fixes https://github.com/randym/axlsx/issues/165
2014-01-31[#280] Updates rubyzip dependencypirvudoru
2014-01-27Merge pull request #279 from dustinsmith1024/comments-fixJurriaan Pruis
fixing comment issues, see #170
2014-01-23fixing comments for 2010 starter editionDustin Smith
2014-01-08Merge pull request #275 from sudhirrs/patch-1Jurriaan Pruis
Fixing typo in documentation. ws.styles
2014-01-08Fixing typo in documentation. ws.styles!!Sudhir
Replaced ws.style with ws.styles.