ColorByValue
Hi, when I set the column colour by value if The table is very long and I need to scroll down with the mouse, the colours are wrongly shown! any idea?
Ps SUPER script, Thanks!!!
Basically the colour cell index doesn't scale with the scroll and remains fixed on the window. this is the first view.

and this is when I scroll

I scrolled six elements, but the colours didn't
Probably I have to fix something in core.py. I guess in the mouse_wheel definition. But I cannot fix the problem
def mouse_wheel(self, event):
"""Handle mouse wheel scroll for windows"""
if event.num == 5 or event.delta == -120:
event.widget.yview_scroll(1, UNITS)
self.rowheader.yview_scroll(1, UNITS)
if event.num == 4 or event.delta == 120:
if self.canvasy(0) < 0:
return
event.widget.yview_scroll(-1, UNITS)
self.rowheader.yview_scroll(-1, UNITS)
self.redraw()
self.multiplecollist = [4] #set the selected columns
self.redrawVisible()
return
Is there an error message appearing when you try to scroll.
no error at all
I have the same bug when scrolling my table
I can't replicate this. It must be related to the specifics of your table. I'd need more details.
Its just a very large dataframe where in a specific column i have some cells painted red, when i scroll down the marked area doesn't scroll with it, just stay in place and marks new cells
how big is very large?
4000x150