summaryrefslogtreecommitdiffhomepage
path: root/test
AgeCommit message (Collapse)Author
2013-06-23provide a better default for dispBlanksAs and allow it to be configuredMoses Hohman
2013-06-23Fixes Issue #202 Axes are borked in Bar3DChartMoses Hohman
2013-06-13Allow a different subtotal function for each data field.Samuel de Framond
2013-06-12Allow overriding the 'created' timestamp in the docprops.Stefan Daschek
Can be specified as option to Package#new: ``` Axlsx::Package.new :created_at => time ``` If omitted, the current time at the moment the document is serialized will be used. This change is therefore fully backward compatible.
2013-05-26Update test for conditional formatting bg_colorAnkur Sethi
2013-05-12implement transpose for SimpleTypedList that supports sparse data.Randy Morgan
2013-04-28Refactored and renamed space preservationRandy Morgan
preserve_spaces has been moved to the workbook and renamed xml_space as that provides a good reference for people trying to figure out what it does, and let's the author specify space preservation for serializations using the shared strings table as well as the default inline serialization in cells.
2013-04-27Merge pull request #185 from agardiner/preserve-spacesRandy Morgan (@morgan_randy)
Add support for preserving leading and trailing spaces in cell values
2013-04-27Add a preserve_spaces option to worksheet, defaults to trueAdam Gardiner
2013-04-27Revert changes to cell serializationAdam Gardiner
2013-04-23Altered integerish test to use a ClassRandy Morgan
The validator will try to cast whatever it is fed to_i. Unfortunately in 1.8.7 Symbol supports to_i.
2013-04-20Removed useless coding hintRandy Morgan
2013-04-19Added prep for 1.3.6 releaseRandy Morgan
2013-04-15Add benchmark for preserve spaceAdam Gardiner
2013-04-12Removed invalid usage comment from pprof daysRandy Morgan
2013-04-12Updated profile to use ruby-prof as we are in 2.0 for dev these days.Randy Morgan
2013-04-10Add support for preserving leading and trailing spaces in cell valuesAdam Gardiner
2013-04-04Added support for specifying between/notBetween formula in an array.Noel Peden
2013-03-17Fixed LineChart and refactored chart axes managementRandy Morgan
2013-03-15Merge pull request #178 from Programatica/masterRandy Morgan (@morgan_randy)
Add LineChart
2013-03-16First run at 'hidden' comments WIPRandy Morgan
The xml is genrated correcty, but the comment still shows until it is selected once in the excel ui - so I must be missing something.
2013-03-15add test and remove activesupport methodsSergio Cambra
2013-01-23Updated chart vary_colorsRandy Morgan
This sets the proper default for each chart type and lets us change it as we need.
2013-01-15Refactored relationship management for drawingsRandy Morgan
This should fix #160
2013-01-15Added support for iso 8601 data types.Randy Morgan
Not really sure what excel is going to do with these data types, but hooking it up is the first step ;)
2013-01-15added tests for trust_inputRandy Morgan
2013-01-10Merge branch 'master' of https://github.com/randym/axlsxRandy Morgan
2013-01-10reduced processing of 3000 rows from 3+ seconds to just under 2Randy Morgan
2013-01-02Worksheet name uniqueness doesn't apply to itselfEdward Anderson
This constraint would prevent you from creating a new worksheet with the name that it would have gotten by default.
2013-01-02Don't add worksheets to the workbook when initialize failsEdward Anderson
Creating a worksheet with an invalid name would still add it to the workbook, despite raising an exception.
2012-12-19changed outline_row to outline_level_row to minimize confusion with bordersRandy Morgan
2012-12-15Added methods to simplify outlining with specsRandy Morgan
worksheet#outline_rows worksheet#outline_columns
2012-12-14Added formula_values options and specs for sheet format pr.Randy Morgan
This lets cache formula values and specify the default row height so that iOS and Max OSX previews render properly
2012-12-12Test for invalid characters in the sheet name.Hayden Ball
With thanks to http://stackoverflow.com/a/451488/1322410 for providing the list of characters
2012-12-04Added sheet_format_pr to help iOS/OSX preview renderers look niceRandy Morgan
This is part of https://github.com/randym/axlsx/issues/149
2012-12-04Moved defined names in workbook to be serialized before pivot tablesRandy Morgan
This fixes https://github.com/randym/axlsx/issues/150
2012-11-28Commented out defined_name testRandy Morgan
Seems the validation crashes on this, and it should not. Need to dig in and work it out.
2012-11-28Uncommented named parts package serialization validation testingRandy Morgan
2012-11-27Merge pull request #148 from alexrothenberg/pivot_tableRandy Morgan (@morgan_randy)
Create a simple Pivot Table
2012-11-27Can configure a pivot table when creating itAlex Rothenberg
see examples/pivot_table.rb wb.add_worksheet(:name => "Data Sheet") do |sheet| sheet.add_row ['Month', 'Year', 'Type', 'Sales', 'Region'] 30.times { sheet.add_row [month, year, type, sales, region] } sheet.add_pivot_table 'G4:L17', "A1:E31" do |pivot_table| pivot_table.rows = ['Month', 'Year'] pivot_table.columns = ['Type'] pivot_table.data = ['Sales'] pivot_table.pages = ['Region'] end end
2012-11-27Create a simple Pivot TableAlex Rothenberg
* an example can be run with `ruby examples/pivot_table.rb` * right now you cannot set options on the pivot table to make it useful (coming soon...)
2012-11-25Added note for ::CGI.escapeHTML performance issueRandy Morgan
2012-11-25Updated profiler to use the standard 'no shared strings, autowith on' optionsRandy Morgan
2012-11-22Merge pull request #145 from freerunningtechnologies/masterRandy Morgan (@morgan_randy)
Basic support for headers and footers.
2012-11-23Updated thin_chars and replaced cover_me with simplecovRandy Morgan
2012-11-22Adds tests for HeaderFooter.Adam Mueller
Change-Id: I77c92cb6af09a13193517adc102093c26cd0cead
2012-11-16Minimized two_tone class methodRandy Morgan
This is really the same as just initializing the object, but anyone who knows about three_tone is going to expect two_tone to be there as well.
2012-11-16Added sensible defaults for color scaleRandy Morgan
You can now use Axlsx::ColorScale.three_tone or Axlsx::ColorScale.two_tone to create pretty conditional formatting.
2012-11-15Updated DataBar conditional formatting to accept cfvo hashes in the ↵Randy Morgan
initializer to bring the API inline with ColorScale
2012-11-15Added color scale initializationRandy Morgan
This lets us pass hashes defiing cfvo and colors for color scale conditional formatting with out the bs of hacking up the existing defaults.