如何在Prawn中设置表格标题?
我正在关注 本教程使用虾gem创建pdf文件, 我找到了此参考文档来生成表格。
如何设置标题行和每列的标题标题?
invoiceData = [["foo","bar"]]
pdf.table(invoiceData) do |table|
table.rows(1..3).width = 72
end
I'm following this tutorial to create a pdf file using prawn gem,
and I found this reference documentation to generate a table.
How do I set the header row and the header titles to each column?
invoiceData = [["foo","bar"]]
pdf.table(invoiceData) do |table|
table.rows(1..3).width = 72
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你通过 :header => true 作为一个选项,它应该使用数组的第一行作为重复标题。来自文档:
If you pass :header => true as an option it should use the first row of your array as a repeating header. From the docs:
除了@dogenpunk的答案之外,还可以设置标题行的样式:
In addition to the answer of @dogenpunk, it is also possible to set the styling of the header row:
这对我有用:
this works for me: