OlapGroupName
A class that represents an olap group name.
Definition
Namespace:Telerik.Pivot.Core.Olap
Assembly:Telerik.Pivot.Core.dll
Syntax:
[DataContract]
public class OlapGroupName : IComparable
Inheritance: objectOlapGroupName
Implements:
Constructors
Initializes a new instance of the OlapGroupName class by provided caption and a group key object.
public OlapGroupName(string groupCaption, object groupKey)
The group caption used to display the group in UI. Sets the GroupCaption property.
groupKeyobjectThe group key used to identify and compare the group with other groups. Sets the GroupKey property.
Initializes a new instance of the OlapGroupName class by provided group name.
public OlapGroupName(string groupName)
The group caption used to display the group in UI and compare the group with other groups. Sets the GroupCaption and GroupKey properties.
Properties
Gets or sets the GroupCaption. Use setter only on groups created by you.
[DataMember]
public string GroupCaption { get; set; }
Gets or sets the GroupCaption. Use setter only on groups created by you.
[DataMember]
public object GroupKey { get; set; }
Gets the keys based on which Sorting is applied.
[DataMember]
public Collection<string> SortKeys { get; }