Interface
IGroup

A pivot group abstraction.

Definition

Namespace:Telerik.Pivot.Core

Assembly:Telerik.Pivot.Core.dll

Syntax:

cs-api-definition
public interface IGroup

Properties

Groups

IGroups contained within this IGroup.

Declaration

cs-api-definition
IReadOnlyList<IGroup> Groups { get; }

Property Value

IReadOnlyList<IGroup>

HasGroups

Gets a value that indicates if the Groups is empty.

Declaration

cs-api-definition
bool HasGroups { get; }

Property Value

bool

Level

Gets the level of the IGroup.

Declaration

cs-api-definition
int Level { get; }

Property Value

int

Name

Gets the name of this group.

Declaration

cs-api-definition
object Name { get; }

Property Value

object

Parent

Gets the parent IGroup. This instance would be in its parent's Groups list.

Declaration

cs-api-definition
IGroup Parent { get; }

Property Value

IGroup

Type

Gets the type of the group.

Declaration

cs-api-definition
GroupType Type { get; }

Property Value

GroupType