Thomas Sudler <[EMAIL PROTECTED]> wrote:
> color of all the cells, that's no problem. But is it also 
possible to define
> another color for different cells? (example: Cell at position 
[1,1]:red,

Thomas,

Try this:

require(tcltk)
tclRequire("Tktable")
tt <- tktoplevel()
table1 <- tkwidget(tt,"table")
tkpack(table1)
tkcmd(.Tk.ID(table1),"tag","celltag","ZeroZero","0,0")
tkcmd(.Tk.ID(table1),"tag","celltag","ZeroOne","0,1")
tkcmd(.Tk.ID(table1),"tag","configure","ZeroZero",bg="red")
tkcmd(.Tk.ID(table1),"tag","configure","ZeroOne",bg="blue")

Regards,
James

> Thank you very much for your answer. It works great.
> Thomas.

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help

Reply via email to