Hi Dhairya,
Thanks for using the Syncfusion product.
In order to merge the specific columns, you can use the QueryCanMergeCells event. Please refer to the below code example and the attached sample,
Code example
this.gridControl1.Model.QueryCanMergeCells += Model_QueryCanMergeCells;
void Model_QueryCanMergeCells(object sender, GridQueryCanMergeCellsEventArgs e)
{
if (e.Style1.CellIdentity.ColIndex != 1)
e.Handled = true;
} |
Regards,
Mohanraj G