I grouped value sin my grid and i have left gray line on each group. How can i remove it ?
Hello Kiryl,
Thank you for your feedback.
To change the color of GroupByRowConnector of UltraGrid while your band is grouped you need to set GroupByRowConnectorAppearance BackColor roperty of your UltraGrid band to appropriate color. You can do this in the designer or run time by code like this:
this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance.BackColor = Color.White;
You may learn more about GroupByRowConnectorAppearance by following the next link http://help.infragistics.com/Doc/WinForms/current/CLR4.0/?page=WinGrid_Styling_Rows_and_Row_Connectors_in_Outlook_Group_By_Mode.html
Please check attached sample solution implementing this approach
Please let me know if this is what you are looking for or if I am missing something.
You undestand me not correctly. I mean remove gray color or replace with white. Not to remove line fully
To remove GroupByRowConnector of UltraGrid while your band is grouped you need to set IndentationGroupByRow property of your UltraGrid band to 0. You can do this in the designer or run time by code like this:
this.ultraGrid1.DisplayLayout.Bands[0].IndentationGroupByRow = 0;
You may learn more about IndentationGroupByRow property by following the next link http://help.infragistics.com/Doc/WinForms/current/CLR4.0/?page=Infragistics4.Win.UltraWinGrid.v14.2~Infragistics.Win.UltraWinGrid.UltraGridBand~IndentationGroupByRow.html
Please check attached sample solution and let me know if this is what you are looking for or if I am missing something.