문제

I'm using pdf-writer gem in ruby.

While drawing a table, i need to set the shade_color and shade_color2 of table so that the rows get the alternate shade and shade2 colors.

Can anyone tell me how to set them?

Like table.shade2 = Color::RGB::Magenta

But i have a hexa vaue like 989898. Now, how to use this.

Any help is appreciated.

Thanks

도움이 되었습니까?

해결책

Cool,

I found it by myself:

table.shade2 = Color::RGB.new(227,241,254)

The same can be used elsewhere:

table.line_color = Color::RGB.new(227,241,254)

다른 팁

Just as a sidenote: PDF::Writer has been more or less abandoned and been replaced by Prawn.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top