layoutMinSize property

int? get layoutMinSize

Minimum size of the legend component. Optional.

If the legend is positioned in the top or bottom margin, then this configures the legend's height. If positioned in the start or end position, this configures the legend's width.

Implementation

int? get layoutMinSize => _config.layoutMinSize;
set layoutMinSize (int? layoutMinSize)

Implementation

set layoutMinSize(int? layoutMinSize) {
  _config.layoutMinSize = layoutMinSize;
}