setColumnIndicatorTopRowCount method

Future<void> setColumnIndicatorTopRowCount(
  1. int rows
)

Set the number of rows in the top column-indicator band.

Implementation

Future<void> setColumnIndicatorTopRowCount(int rows) async {
  final top = ColIndicatorConfig()..bandRows = rows < 0 ? 0 : rows;
  await _configure(
    GridConfig()..indicators = (IndicatorsConfig()..colTop = top),
  );
}