summaryrefslogtreecommitdiffhomepage
path: root/lib/axlsx/stylesheet
AgeCommit message (Collapse)Author
2017-10-12Fix incorrect option value in rdocRyan Kendall
2016-11-07Override NumFmt serialized_attributes to ovid removing underscoresEvan Hallmark
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-02-26Huge refactoringJurriaan Pruis
Do not create huge strings Let Row inherit from SimpleTypedList Optimized sanitizing Optimized validation And more..
2014-01-08Fixing typo in documentation. ws.styles!!Sudhir
Replaced ws.style with ws.styles.
2013-08-16Merge pull request #226 from Fapper/patch-1Randy Morgan (@morgan_randy)
Correct minor typos
2013-08-08Don't mutate the object passed into Color#rgb=Trent Ogren
2013-08-06Fix minor typosMartin madsen
2013-07-31Fix minor typoMichael Westbom
2013-05-26Update bg_color in conditional formattingAnkur Sethi
Conditional formatting for background color fills is different for DXF. This must be undocumented and is quite annoying. I verified the behavior in Excel 2010 Mac and Windows. I didn't understand why background colors were not being applied even though the style was being applied for conditional formatting. Looking at styles.xml I saw that it is different in a file created by Excel. I have updated the code to reflect it and tested in Mac and Windows.
2013-01-21Update comments to reflect new usage of #add_row methodNestor Pestelos and Ramon Tayag
2012-11-27Merge pull request #147 from raiis/masterRandy Morgan (@morgan_randy)
Different left/right border style
2012-11-28Better way hot to override borders style.raiis
2012-11-26Added individual border override options.raiis
2012-11-05completed documentationRandy Morgan
2012-10-18refactored pattern_fill to specify tag name for fg and bg colorsRandy Morgan
2012-10-18Updated color to_xml_string to use snake cased tag_nameRandy Morgan
2012-10-18Refactored color to_xml_string to accept a tag name as colors are sometimes ↵Randy Morgan
serialized as differntly named nodes with the same data content
2012-10-14Refactored to use options parser and serialized attributesRandy Morgan
2012-10-14Refactored to use options parserRandy Morgan
2012-10-14extracted percentage validation for gradient fill left, right, top, bottomRandy Morgan
2012-10-14Refactored GradientFill to use options parser and serialized attributes and ↵Randy Morgan
patched type on Cfvo
2012-10-14Refactored CellStyle to use options parser and serialized attributesRandy Morgan
2012-10-14Refactored CellProtection to use options parser and serialized attributesRandy Morgan
2012-10-14refactor options parsing for dxfRandy Morgan
2012-10-14refactored Xf to use serialized attributes.Randy Morgan
This still needs the Camel -> Snake patch and aliases
2012-10-14patched border parsing for Style#add_style to enforce color and style optionsRandy Morgan
2012-10-14refactored cell allignmentRandy Morgan
2012-10-14Refactored options parse into module and applied it to border_rbRandy Morgan
This should be done for all classes that use this same peice of repeated code.
2012-10-14refactored camelCase attributes to snake_case and implemented serializable ↵Randy Morgan
attriubtes for Border Aliases are provided for altered attriubte names
2012-09-14Patch for 1.8.7 and update table style example to use custom nameRandy Morgan
2012-09-14New fonts should use the default font values before applying custom style ↵Randy Morgan
options via add_style
2012-08-23show how to do border edges in the exempts and update docs in stylesheetRandy Morgan
2012-07-07documentation updatesRandy Morgan
Huge thanks to @teleological for pointing out the error in Styles#add_style
2012-05-15patch for 1.8.7Randy Morgan
2012-05-13patch gradient fill serializationRandy Morgan
2012-04-25properly return a numFmt object or numFmtId based on add style type infoRandy Morgan
2012-04-241.8.7 patchesRandy Morgan
2012-04-24add_style refactoring. Randy Morgan
2012-04-23first stage refactoring for Style#add_style [inprogress]Randy Morgan
2012-04-20[#33] Add support for Dxf elements to enable conditional formattingStephen Pike
New Dxf class implements 18.8.14. Conditional formatting now "works". Add :type option to add_styles, defaults to :xf when add_styles is called with :dxf type, new styles are not added to the global @styles set. Dxf child elements only exist inside the `<dxf>` chunk. Added tests and an example.
2012-04-09credit where credit is due, some docs changes and removing the befor_script ↵Randy Morgan
from travis as it requires rake in the deps it seems.
2012-04-09Merge pull request #76 from ochko/masterRandy Morgan
Shared string table works!
2012-04-09border edges and spec cleanup.Randy Morgan
2012-04-06Add edges() to border to return list of applied edgesScott
Add border edge tests to styles spec
2012-04-06put only plain string cells in shared string tableochko
2012-04-05Removed rake 0.8.7 dependency specific to ruby 1.9.2, as it didn't seemScott
to break anything without it Made border definitions access instead of delete hash params, as calling it from within a loop without cloning the style hash was causing it to be empty on subsequent loops. Didn't see any reason to be deleting them. Added :edges param to :border hash to specify [:top,:bottom], etc. If it's absent, defaults to all edges.
2012-04-04shared string should be faster than non-shared string serializationochko
2012-04-03pre-release cleanupRandy Morgan