开发者

How to make a bold header in a Prawn table

开发者 https://www.devze.com 2023-03-21 01:59 出处:网络
I\'m using Prawn and need to make the Header row bold but I can\'t find any solution in the API. Her开发者_StackOverflow社区e you can see my current table with normal text Headers

I'm using Prawn and need to make the Header row bold but I can't find any solution in the API.

Her开发者_StackOverflow社区e you can see my current table with normal text Headers

pdf.table (Data, :header => true) do
  table.header=(["Header1", "Header2", "Header3", "Header4"])        
end


Its just as simple as I thought

pdf.table Data, {:header => true} do |table|
    table.header=(["Header1", "Header2", "Header3", "Header4"])     
    table.row(0).font_style = :bold
end


pdf.text "your header.", :size => 9.8, :style => :bold, :spacing => 1.5, :align => :right


pdf.table(
  data, 
  :headers => [
    "Header1", 
    {:text => "Header2", :font_size => :bold}, 
    "Header3", 
    "Header4"]
)

other options:

:align_headers :header_text_color :header_color

see http://rubydoc.info/gems/prawn-layout/0.8.4/Prawn/Table

0

精彩评论

暂无评论...
验证码 换一张
取 消