excelR icon indicating copy to clipboard operation
excelR copied to clipboard

how to change style for a column or some area?

Open zhangjunjiang opened this issue 9 months ago • 0 comments

I can see we can change style for several cells by

style = list(A1='background-color:orange; color:green;', 
              B1='background-color:orange; color:green;')
                      
 excelTable(data=data, columns = columns, style = style)

I have a question if we can edit it for some area ,or a column like

style = list(A1:B9='background-color:orange; color:green;', 
              C='background-color:orange; color:green;')
                      
 excelTable(data=data, columns = columns, style = style)

I suppose it will be more convenient if we can like that😁😁

zhangjunjiang avatar Apr 03 '25 02:04 zhangjunjiang