Displaying 1 result from an estimated 1 matches for "corrtable".
Did you mean:
correctable
2009 Nov 04
1
odfweave table styles
...my code I do:
<<modtablestyles, echo=FALSE>>=
bluesYes <- which(outTable[,2] >= 3 & outTable[,2] < 4)
namel <- colnames(outTable)
tstyles <- tableStyles(outTable, useRowNames = F, header = namel)
tstyles$cell[bluesYes,2] <- "highlight"
@
<<corrTable,echo=FALSE,results=xml>>=
odfTable(outTable, styles = tstyles, useRowNames = F, colnames = namel)
@
My code runs and does not throw an error, but the resulting table does not
have the rows I asked for highlighted. If I check the tableStyles object the
values of $cell are properly set as I...