我在rails axlsx gem上使用ruby来渲染我的excel。 现在我想要对文本进行样式设置,使其对角显示,如附加的示例图像所示。 我不知道在代码中何处或如何设置此对齐功能。 任何帮助表示赞赏!
答案 0 :(得分:0)
alignment: {:textRotation => 60}
那为我做了。 我设法从axlsx github页面找到了类似的问题: https://github.com/randym/axlsx/issues/110
我无法在文档中找到它。
完整的代码可以实现如下:
my_style {
alignment: {:textRotation => 60, horizontal: :center, vertical: :center, wrap_text: true},
}
sheet.add_row(headers, style: styles[:my_style], height: height)