Class KpiElements
Represents the collection of KPI elements.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Olap.Reports
Assembly: Syncfusion.Olap.Base.dll
Syntax
public class KpiElements : Element, ICloneable<Element>, ICloneable<KpiElements>
Constructors
KpiElements()
Initializes a new instance of the KpiElements class.
Declaration
public KpiElements()
Properties
Elements
Gets or sets the collection of KPI elements.
Declaration
public KpiElementCollection Elements { get; set; }
Property Value
Type | Description |
---|---|
KpiElementCollection | The collection of KPI elements. |
Methods
Add(String)
Adds the KPI element with the specified name.
Declaration
public void Add(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the KPI element. |
Add(String, Boolean, Boolean, Boolean, Boolean)
Adds the KPI element with the specified name.
Declaration
public void Add(string name, bool kpiValue, bool kpiGoal, bool kpiStatus, bool kpiTrend)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the KPI element. |
System.Boolean | kpiValue | Indicates whether to show KPI value. |
System.Boolean | kpiGoal | Indicates whether to show KPI goal. |
System.Boolean | kpiStatus | Indicates whether to show KPI status. |
System.Boolean | kpiTrend | Indicates whether to show KPI trend. |
Clone()
Clones this instance.
Declaration
public KpiElements Clone()
Returns
Type | Description |
---|---|
KpiElements | A copy of this instance. |