DataGrid: large and small letters in the column header

How do I show a string with large and small letters in the column header (i.e. "Date", not "DATE")?

Hi @Alex77,

You can need to override the default theme CSS to do that:

.rz-datatable-thead th .rz-column-title {
   text-transform: none;
}
1 Like