ItemDataMeasure Interface
In This Article
Contains the measure metadata.
#Declaration
TypeScript
export interface ItemDataMeasure
#Remarks
The measure metadata contains the following information:
- the ItemDataMeasure.dataMember that identifies the data source list used to provide data for the current measure;
- the ItemDataMeasure.summaryType value that identifies the type of summary function calculated against this measure;
- the name of the measure (the ItemDataMeasure.name property);
- the data item identifier (the ItemDataMeasure.id property).
Use the ItemDataMeasure.format method to format the specified value using the format setting for the current measure.
See Also
#Properties
#dataMember Property
#Declaration
TypeScript
dataMember: string
#Property Value
Type |
---|
string |
#format Property
#Declaration
TypeScript
format: (value: any) => string
#Property Value
Type |
---|
(value: any) => string |
#id Property
#Declaration
TypeScript
id: string
#Property Value
Type |
---|
string |
#name Property
#Declaration
TypeScript
name: string
#Property Value
Type |
---|
string |
#summaryType Property
#Declaration
TypeScript
summaryType: string
#Property Value
Type |
---|
string |