Sha256: 1414c4467d2f30f939367d84e894501a4798a46f69ae74813f91f38d04859787
Contents?: true
Size: 1.13 KB
Versions: 8
Compression:
Stored size: 1.13 KB
Contents
if defined?(title) pdf.text title.to_s, :align => :center, :style => :bold, :size => 13 end styling = {} column_widths = {} if !defined?(column_widths) || column_widths.blank? font_size = table[:font_size] || 8 table_header = table[:table_header] != false pdf.table prep_pdf_table(table, styling), :header => table_header, :row_colors => ["EEEEEE", "FFFFFF"], :width => pdf.bounds.width, :cell_style => {:padding => 2, :size => font_size, :align => :center} do |t| t.cells.borders = [] t.style t.row(0), :borders => [:bottom], :background_color => "DDDDDD", :font_style => :bold [:left, :center, :right].each do |style| styling[style].to_a.each do |cell| t.row(cell[0]).column(cell[1]).align = style end end styling[:bold].to_a.each do |cell| t.style t.row(cell[0]).column(cell[1]), :font_style => :bold end styling[:row_colors].each do |row, color| t.style t.row(row), :background_color => color end if styling[:column_widths] t.column_widths = styling[:column_widths] else t.column_widths = column_widths end # if totals row? how specify or check? # t.style t.row(-1), :font_style => :bold end
Version data entries
8 entries across 4 versions & 1 rubygems