removeAllCalculatedMeasures method

Future<void> removeAllCalculatedMeasures()

Removes all calculated measures. Note that the removeAllCalculatedMeasures method is available only for reports based on "csv", "json", and "api" data source types.

Implementation

Future<void> removeAllCalculatedMeasures() async {
  WebViewController apiController = await controller.future;
  await apiController
      .runJavascript("webdatarocks.removeAllCalculatedMeasures()");
}