If I am using the Ruby Spreadsheet gem to export data from a rails app to excel, is there a way to get the size of a cell (width and height) to adjust to the size of the content automatically?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
This method will loop through each column in the worksheet, then loop through each cell in the column, finding the cell with the most characters (+3 for a little extra space) and adjusting according to that cell. It then does the same thing for the rows. This value works great for font size 10, but to make sure it gets a little bigger for larger fonts, it adjust to the font size with this bit of code:
..It's not perfect, but gets the job done. |
|||||
|