setTableSizes method

Future<void> setTableSizes(
  1. dynamic tableSizes
)

Sets table sizes for the component. Use this method to set table sizes without updating the report. When called, the setTableSizes() method overwrites previously set table sizes.

Implementation

Future<void> setTableSizes(dynamic tableSizes) async {
  WebViewController apiController = await controller.future;
  await apiController
      .runJavascript("flexmonster.setTableSizes(${jsonEncode(tableSizes)})");
}