[]
        
(Showing Draft Content)

C1.Win.FlexGrid.C1FlexGridBase.HideEmptyGroups

HideEmptyGroups Property

HideEmptyGroups

Gets or sets whether to hide empty groups or subtotals when filtering the grid. If you set the value to true and apply a grid filter, the groups or subtotals in which all rows are filtered will be hidden.

Declaration
public bool HideEmptyGroups { get; set; }
Public Property HideEmptyGroups As Boolean
Examples

Hiding empty groups or subtotals when filtering the grid can be done very simply by setting a boolean value.

var flexGrid = new C1.Win.FlexGrid.C1FlexGrid();
flexGrid.HideEmptyGroups = true;