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;
}
Calculates the minimum Y value among the bars.
double get minY {
_checkIfEmpty();
return bars.map((bar) => bar.minValue).min;
}