Sha256: f3400d934ca63fcc6a28cf6ce73119143b409c59e2f5bbc193355f01cdd91cdb

Contents?: true

Size: 633 Bytes

Versions: 7

Compression:

Stored size: 633 Bytes

Contents

# encoding: utf-8
#
# Demonstrates the use of the :col_span option when using Document#table
#
require "#{File.dirname(__FILE__)}/../example_helper.rb"

Prawn::Document.generate "table_colspan.pdf" do
  data = [ ['01/01/2008', 'John Doe', '4.2', '125.00', '525.00'], 
           ['01/12/2008', 'Jane Doe', '3.2', '75.50', '241.60'] ] * 5
  
  data << [{:text => 'Total', :colspan => 2, :align => :center}, '37.0', '1002.5', '3833']
  
  table data,
  :position => :center,
  :headers => ['Date', 'Employee', 'Hours', 'Rate', 'Total'],
  :column_widths => { 0 => 75, 1 => 100, 2 => 50, 3 => 50, 4 => 50},
  :border_style => :grid
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
jyurek-prawn-layout-0.8.4 examples/table/table_colspan.rb
prawn-layout-0.8.4 examples/table/table_colspan.rb
prawn-layout-0.7.2 examples/table/table_colspan.rb
prawn-layout-0.7.1 examples/table/table_colspan.rb
prawn-layout-0.3.2 examples/table/table_colspan.rb
prawn-layout-0.3.1 examples/table/table_colspan.rb
prawn-layout-0.2.1 examples/table/table_colspan.rb