This occurs on both versions 1.3 and 1.4
When enabling text_wrap=True on a header renderer, the column header stops showing the small sort/filter column menu icon (bottom-right chevron). The icon is still clickable, just invisible. As well as being a bit weird, this means that there is also no visual indicator that a column has been sorted/filtered.
import ipydatagrid as ipd
import pandas as pd
ipd.DataGrid(
pd.DataFrame({"A long column name": [1, 2, 3]}),
base_column_size=100,
base_column_header_size=50,
header_renderer=ipd.TextRenderer(
text_wrap=True,
vertical_alignment='top'
)
)
Please can we ensure that the header menu icon is still drawn even when custom header renderers with wrapping is used?
Thanks
This occurs on both versions 1.3 and 1.4
When enabling text_wrap=True on a header renderer, the column header stops showing the small sort/filter column menu icon (bottom-right chevron). The icon is still clickable, just invisible. As well as being a bit weird, this means that there is also no visual indicator that a column has been sorted/filtered.
Please can we ensure that the header menu icon is still drawn even when custom header renderers with wrapping is used?
Thanks