I am using the AXLSX
Ruby gem to generate Excel reports and I'm having a problem applying several styles to cells in a modular way.
Here's an example that has just two styles ("on background" and "bold on background"),
require 'axlsx'
axlsx = Axlsx::Package.new
workbook = axlsx.workbook
with_background = workbook.styles.add_style bg_color: "E2D3EB"
bold_with_background = workbook.styles.add_style bg_color: "E2D3EB", b: true
workbook.add_worksheet do |sheet|
sheet.add_row
sheet.add_row ["", "Product", "Category", "Price"], style: [0, bold_with_background, bold_with_background, bold_with_background]
sheet.add_row ["", "Butter", "Dairy", 4.99], style: [0, with_background, with_background, with_background]
sheet.add_row ["", "Bread", "Baked Goods", 3.45], style: [0, with_background, with_background, with_background]
sheet.add_row ["", "Broccoli", "Produce", 2.99], style: [0, with_background, with_background, with_background]
end
axlsx.serialize "grocery.xlsx"
and here's the result,
Now, suppose I have to apply a border around this table. If I understand it correctly, I'll have to have a lot of styles to get there: "bold on backbroung with top left edge", "bold on background with top edge", "bold on backgound with top right edge", "on background with right edge", etc.
Is there a way to apply several styles to cells instead of having to declare a style for each possible combination of base styles?
I'd like to have something like
sheet["B2"].add_style(bold).add_style(background).add_style(top_left_edge)
but not sure if the gem implements a similar solution.
Any ideas? Thanks!
I've managed to overlay cell styles by monkey patching
Axlsx
classes. The idea is to first apply raw styles to cell in the form of Ruby hashes. When that is finished one can generateAxlsx
styles for the workbook and apply them. I can now separate the markup from style, having the styles applied asBelow is the full listing of my hacky solution. This doesn't include identifying unique styles among other things that should be done in professional code. Looking forward to any feedback.
Edit: I've leaned up my solution and extracted it into a gem https://github.com/sakovias/axlsx_styler