On 5/11/05, Joe Van Dyk <joevandyk / gmail.com> wrote:
> On 5/5/05, Joe Van Dyk <joevandyk / gmail.com> wrote:
> > In Tk, what's the best way to show a large table of data that gets
> > constantly updated?
> 
> Another TkTable question:
> 
> I want to have the ability to color in titles in a TkTable according
> to some logic, so the titles on each row would be colored differently.
> 
> However, I can only seem to find an option to color all the titles one color:
>    @table.tag_configure('title', :bg=>"red", :fg=>"")
> 
> Does that ability exist in TkTable?

Bah, figured it out.  

I can use:
  @table.tag_cell('tag name', [cell_x, cell_y])

And then do
  @table.tag_configure('tag_name', :bg=>'something')