minY property

double get minY

Calculates the minimum Y value among the bars.

Implementation

double get minY {
  _checkIfEmpty();
  return bars.map((bar) => bar.minValue).min;
}