| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-04-07 | Fix Layout/EmptyLinesAroundBlockBody offenses | Geremia Taglialatela | |
| ``` rubocop --only Layout/EmptyLinesAroundBlockBody -a ``` | |||
| 2023-04-06 | Fix Layout offenses related to access modifiers | Geremia Taglialatela | |
| ``` rubocop --only Layout/EmptyLinesAroundAccessModifier,Layout/AccessModifierIndentation -a ``` | |||
| 2023-04-06 | Fix Layout/CommentIndentation offenses | Geremia Taglialatela | |
| ``` rubocop --only Layout/CommentIndentation -a ``` | |||
| 2023-04-06 | Fix Layout/EmptyLineBetweenDefs offenses | Geremia Taglialatela | |
| ``` rubocop --only Layout/EmptyLineBetweenDefs -a ``` | |||
| 2023-04-06 | Fix Layout/EmptyLines offenses | Geremia Taglialatela | |
| ``` rubocop --only Layout/EmptyLines -a ``` | |||
| 2023-04-06 | Fix Style/Encoding offenses | Geremia Taglialatela | |
| ``` rubocop --only Style/Encoding -a ``` | |||
| 2023-04-06 | Fix Layout/TrailingEmptyLines offenses | Geremia Taglialatela | |
| ``` rubocop --only Layout/TrailingEmptyLines -a ``` | |||
| 2023-04-06 | Remove Layout/TrailingWhitespace offenses | Geremia Taglialatela | |
| ``` rubocop --only Layout/TrailingWhitespace -a ``` | |||
| 2022-06-05 | Implement “rounded corners” setting for charts | Stefan | |
| Until now this setting was not present in the generated XML. According to the ECMA spec the setting defaults to true, so charts always had rounded corners. Now rounded corners can be disabled explicitly. | |||
| 2022-06-01 | Implement “plot visible only” setting for charts | Stefan | |
| Until now this setting was hardcoded to `true`. The setting affects whether data from hidden cells (cells width zero height or width) is used when plotting the chart. | |||
| 2022-05-18 | Completely hide chart titles if blank | Stefan | |
| Before this change, a chart with a blank title would show up in Excel with a default title like “Chart title” or “Diagrammtitel”. It was not possible to completely hide a chart title: Setting it to an empty space would override Excel’s default, but the empty title did still occupy vertical space. Per OOXML standard the `title` element is optional, so omitting it if the title is blank looks like the right thing to do and seems to work correctly in Excel. | |||
| 2022-05-18 | Implement `Title#empty?` | Stefan | |
| This is primarily a refactoring, but exposing it as a public method seems useful. | |||
| 2022-05-18 | Fix missing cell reference for chart title when cell empty | Stefan | |
| Before this change, creating a chart title referencing an empty cell would lose the cell reference. If the cell was later set to a non-blank value (either during generating the file, or while editing it in a spreadsheet app), the chart title would stay blank. | |||
| 2022-03-02 | instance_values -> instance_values_for | pjskennedy | |
| 2022-03-02 | Update references to use new class method | pjskennedy | |
| 2022-02-07 | Merge branch 'master' into feature/manageable-scatter-markers | Oleg Yakovenko | |
| 2021-07-25 | Fix gap width validator for bar charts (#108) | Zsolt Kozaroczy | |
| `gap_width` and `gap_depth` now allow only integers in the range of 0–500. The previous behaviour (requiring a percentage value) was according to the current version of the OOXML spec, but Excel seems to rely on an older version, where the gap amount was required to be a simple integer. Also, `gapDepth` is only allowed in 3D bar charts, so it is now no longer available for 2D bar charts. | |||
| 2021-07-24 | Add overlap to bar charts (#107) | Zsolt Kozaroczy | |
| 2021-04-26 | Add option to define a series color for the BarSeries (#81) | Zsolt Kozaroczy | |
| 2021-03-05 | feature: useless assignment removed | Oleg Yakovenko | |
| 2021-03-05 | feature: helper method naming adjustment | Oleg Yakovenko | |
| 2021-03-05 | feature: spec fix | Oleg Yakovenko | |
| 2021-03-05 | feature: handle default marker symbol | Oleg Yakovenko | |
| 2021-03-02 | feature: respect marker preferences without color specification | Oleg Yakovenko | |
| 2021-03-01 | feature: marker symbol management for scatter series | Oleg Yakovenko | |
| 2021-03-01 | feature: scatter series should respect marker preference of parent chart | Oleg Yakovenko | |
| 2020-08-24 | Explosion explosion fixed - issue 58 | Noel Peden | |
| 2020-07-09 | fix typo in documentation for label_position (#52) | Viktor Polyakov | |
| 2019-12-29 | Escape special characters in charts (#40) | Zsolt Kozaroczy | |
| Fixes #37 | |||
| 2019-12-17 | Fix typos in BarChart comments | Koza | |
| 2019-12-15 | Fix rdoc for BarSeries#shape | Stefan Daschek | |
| 2018-02-08 | chore(coverage) increase coverage and cleanup | randym | |
| 2018-02-06 | Merge branch 'master' into release-3.0.0 | randym | |
| 2017-11-17 | Add support for non-3D bar charts | David N. Robinson | |
| 2017-11-07 | Add support for area charts | David N. Robinson | |
| 2017-04-01 | chore(doc): document some members | randym | |
| 2017-04-01 | fix(options): fix parsing for start_at end_at | randym | |
| 2017-04-01 | fix(two_cell_anchor): spat arguments for start_at, end_at when they are in ↵ | randym | |
| the options hash | |||
| 2016-11-12 | fix warning: constant ::Fixnum is deprecated | takkanm | |
| fix Fixnum deprecated warning on Ruby2.4-preview3. Fixnum was unify into Integer. https://bugs.ruby-lang.org/issues/12005 | |||
| 2015-09-22 | Escape special characters in chart `StrVal` | Clark Cutler | |
| So that, for example, pie charts can render with labels that include an ampersand | |||
| 2015-08-07 | Merge branch 'master' of https://github.com/woto/axlsx | Ruslan Kornev | |
| 2015-08-07 | allow to use d_lbl_pos for LineChart | Ruslan Kornev | |
| 2015-07-29 | num_val.rb, str_val.rb: added checking for nil values in to_xml_string | Erik Veijola | |
| Signed-off-by: Erik Veijola <[email protected]> | |||
| 2015-07-28 | scatter_series.rb: added line_width to scatter series | Erik Veijola | |
| Signed-off-by: Erik Veijola <[email protected]> | |||
| 2015-07-28 | chart.rb: added method to set font size of Title object in chart | Erik Veijola | |
| Signed-off-by: Erik Veijola <[email protected]> | |||
| 2015-07-28 | title.rb: added text_size to set the font size of the title | Erik Veijola | |
| Signed-off-by: Erik Veijola <[email protected]> | |||
| 2015-07-05 | Fix Axlsx::LineSeries#marker_symbol and add tests | Jonathan Tron | |
| 2015-07-05 | Merge branch 'marker_symbols' of https://github.com/mfrank01/axlsx into ↵ | Jonathan Tron | |
| mfrank01-marker_symbols | |||
| 2015-07-04 | Add a little bit of doc, remove warning by using attr_reader | Jonathan Tron | |
| 2015-07-04 | Merge branch 'master' of https://github.com/alankessler/axlsx into ↵ | Jonathan Tron | |
| alankessler-master | |||
