RequestUnderlyingDataParameters Interface
Contains parameters used to obtain the underlying data for the dashboard item.
Declaration
export interface RequestUnderlyingDataParameters
Properties
axisPoints Property
Specifies axis points used to obtain the underlying data.
Declaration
axisPoints?: Array<ItemDataAxisPoint>
Property Value
Type | Description |
---|---|
ItemDataAxisPoint[] | An array of ItemDataAxisPoint objects that represent axis points. |
Remarks
Note that the axisPoints property should accept points from different data axes.
dataMembers Property
Specifies an array of data member identifiers used to obtain underlying data.
Declaration
dataMembers?: Array<string>
Property Value
Type | Description |
---|---|
string[] | An array of string values that specify data member identifiers. |
uniqueValuesByAxisName Property
Specifies the unique dimension value used to obtain the underlying data.
Declaration
uniqueValuesByAxisName?: AxisValuesDictionary
Property Value
Type | Description |
---|---|
AxisValuesDictionary | The unique dimension value. |
See Also
valuesByAxisName Property
Specifies the dimension value used to obtain the underlying data.
Declaration
valuesByAxisName?: AxisValuesDictionary
Property Value
Type | Description |
---|---|
AxisValuesDictionary | The dimension value. |
See Also