Composite columns question

In the demo we see the Firstname spanning 3 cells with Title, Birthday and Hiredate on the row below it.
Would it be possible to reverse that? So having Title, Birthday and Hiredate and below that the Firstname?
If yes, how to achive this?
Thanks in advance

<RadzenDataGridColumn TItem="Employee" Property="FirstName" Title="FirstName" Width="140px" Filterable=@allowCompositeDataCells Sortable=@allowCompositeDataCells>
                         <Columns>
                            <RadzenDataGridColumn TItem="Employee" Property="Title" Title="Job Title" Width="200px" />
                            <RadzenDataGridColumn TItem="Employee" Property="BirthDate" Title="Birth Date" FormatString="{0:d}" Width="140px" />
                            <RadzenDataGridColumn TItem="Employee" Property="HireDate" Title="Hire Date" FormatString="{0:d}" Width="140px" />
                         </Columns>
                    </RadzenDataGridColumn>

Hi @Mohorovicic,

No, this isn't a supported scenario. Only the parent column spans over multiple child columns.