Skip to main content

Measure(String, String, SummaryType) Constructor

Initializes a new instance of the Measure class with the specified identifier, binds it to the specified data member and sets the summary type to the specified value.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v23.2.Core.dll

NuGet Package: DevExpress.Dashboard.Core

Declaration

public Measure(
    string id,
    string dataMember,
    SummaryType summaryType
)

Parameters

Name Type Description
id String

A String that specifies the dimension identifier. This value is assigned to the DataItem.ID property.

dataMember String

A String that identifies the data item to which this Measure should be bound. This value is assigned to the DataItem.DataMember property.

summaryType SummaryType

A SummaryType enumeration member that specifies the summary function type. This value is assigned to the Measure.SummaryType property.

Remarks

The Measure identifier passed via the id parameter is used to refer to this dimension in dashboard item filter criteria specified via the DataDashboardItem.FilterString property.

The data member identifier consists of the data table name and the column name, dot separated. For instance, the Street Address column from the Customers table is identified as “Customers.Street Address”.

If a data source has been specified in code, particular data fields can be custom objects. In this instance, the identifier is a chain of property names, like “Customers.City.Population”.

See Also