Hi Experts,
I've one GGC for which i want to merge some specific columns, please check following data that I am getting from Database.
I tried the documentation which is given for merging and i tried following code.
Private Sub TestSyncGrid_Load(sender As Object, e As EventArgs) Handles MyBase.Load
dgv.TableDescriptor.Appearance.AnyRecordFieldCell.MergeCell = dgv.TableDescriptor.Appearance.AnyRecordFieldCell.MergeCell = GridMergeCellDirection.Both
dgv.TableModel.Options.MergeCellsMode = GridMergeCellsMode.OnDemandCalculation Or GridMergeCellsMode.MergeRowsInColumn
dgv.TableModel.Options.MergeCellsLayout = Syncfusion.Windows.Forms.Grid.GridMergeCellsLayout.Grid
End Sub
Basically I want it to be look like following screen
except itemname,itemamount and sizetype i want rest of the columns to be merged like MergeCellsInColumn
Please check the code and advice,
Thank You,
Dhairya Joshi