Hi Peter,
Thanks for your interest in Syncfusion products.
We have analyzed your reported scenario and we are little bit unclear with your scenario. The StackOverFlow exception will be occurred when the grid cellstyles are accessed based on index methods in QueryCellStyleInfo event and TableControlPrepareViewStyleInfo events in your sample project. Could you please provide the following details,
· Please ensure whether you are accessing the cellStyles by its indexes as in below code. If so, please remove that code.
void gridGroupingControl1_TableControlPrepareViewStyleInfo(object sender, GridTableControlPrepareViewStyleInfoEventArgs e)
{
var obj = this.gridGroupingControl1.TableControl.GetTableViewStyleInfo(e.Inner.RowIndex, e.Inner.ColIndex);
}
void gridGroupingControl1_QueryCellStyleInfo(object sender, GridTableCellStyleInfoEventArgs e)
{
var style = this.gridGroupingControl1.TableModel[e.TableCellIdentity.RowIndex, e.TableCellIdentity.ColIndex];
//or
var obj = this.gridGroupingControl1.TableControl.GetTableViewStyleInfo(e.TableCellIdentity.RowIndex, e.TableCellIdentity.ColIndex);
}
· Please provide us with the screenshots of your sample project code , if still that exception exists in your application and provide the details of your control that you are used to have grid control in it.
It would be more helpful for us to provide the exact solution at the earliest.
Regards,
Piruthiviraj