collapseCell method

Future<void> collapseCell(
  1. String axisName,
  2. List<String> tuple, [
  3. String? measureName
])

Collapses a specific node on the grid and charts.

Implementation

Future<void> collapseCell(String axisName, List<String> tuple,
    [String? measureName]) async {
  WebViewController apiController = await controller.future;
  await apiController.runJavascript(
      "flexmonster.collapseCell('$axisName',${jsonEncode(tuple)}${measureName == null ? "" : ",'$measureName'"})");
}