removeCalculatedMeasure(measureName: String)
[starting from version: 2.3]
Removes the calculated value by the measure's unique name.
Note The removeCalculatedMeasure
method is available only for reports based on the "json"
, "csv"
, and "api"
data source types.
Parameter/Type | Description |
---|---|
measureName String | The value’s unique name. |
Remove the "Average Quantity"
calculated value:
let measureName = "Average Quantity";
pivot.removeCalculatedMeasure(measureName);