referencing to the discution - Format Date Time in AgGrid - Custom Components / streamlit-aggrid - Streamlit i set up the format tring for date column:
gb.configure_column(field='date', header_name='date', pivot=True,
type=["customDateTimeFormat"], custom_format_string='yyyy-MM')
and it displays values correctly. As example : 2024-03
when pivoting was applied, new "pivoted’ column was created with the name “2024-03-01T00:00:00”
is it possible to stay with original values as column names?