2

スプレッドシート gem を使用して Excel テーブルのスタイルを設定したいと考えています。

次のように、テーブルを私のビューのように見せたいです。

これが私のフォーマットコードです:

    header_format = Spreadsheet::Format.new :color => :black,
                               :weight => :bold,
                               :size => 10

ドキュメント: http://spreadsheet.rubyforge.org/files/GUIDE_txt.html

スプレッドシートの宝石を使用してそれを行うことはできますか、それとも標準色のみを使用する必要がありますか?

4

1 に答える 1

2

この投稿を見つけました - http://andisxp.blogspot.com/2011/12/export-to-excel-with-spreadsheet-gem.html

  Instead of modifying the gem though, I would suggest using the following two 
  lines at   startup, they modify constants which isn't very nice but maybe 
  preferable to modifying the gem just to get some color working.

  Spreadsheet::Excel::Internals::SEDOC_ROLOC.update(:blue_gray => 0x001f)
  Spreadsheet::Column.singleton_class::COLORS << :blue_gray
于 2012-10-17T12:39:24.753 に答える