We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
code to reproduce:
mapListColorProvider = [ {"a": 1, "b": 2, "c": 3}, {"a": 4, "b": 5, "c": 6}, {"a": 7, "b": 8, "c": 5} ] table56 = TableDisplay(mapListColorProvider) def color_provider(row, column, td): row = td.values[row] val = row[column] if val == 5: return Color.GREEN return Color.BLACK table56.setFontColorProvider(color_provider) table56
expected result: color provider works the same after of moving column
The text was updated successfully, but these errors were encountered:
No branches or pull requests
code to reproduce:
expected result: color provider works the same after of moving column
The text was updated successfully, but these errors were encountered: