expandCell method

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

Expands a specific node on the grid and charts.

Implementation

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