All documentation
  • API Reference for older versions
  • removeCalculatedMeasure

    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.

    Parameters

    Parameter/TypeDescription
    measureName
    String
    The value’s unique name.

    Example

    Remove the "Average Quantity" calculated value:

    let measureName = "Average Quantity";
    pivot.removeCalculatedMeasure(measureName);

    Live example

    See also