I know that can I can change the style of a whole row with like:
myTreeView.insert("", END, values = (25, -7, 30), tags = "mytag")
But how can I change the style of specific cells, so for example to use a red color only for negative numbers?
Is there something like:
myTreeView.tag_configure("neg", foreground = "red")
myTreeView.tag_configure("pos", foreground = "green")
myTreeView.insert("", END, values = (25, -7, 30), tags = ("pos", "neg", "pos")) ???
OR
myTreeView.insert("", END, values = ((25, "pos"), (-7, "neg"), (30, "pos"))) ???