minY property
double
get
minY
Minimum Y coordinate (includes both offset y and final fy for correct bar/line bounds)
Implementation
double get minY {
if (isEmpty) return 0.0;
return map((p) => math.min(p.y, p.fy)).reduce((a, b) => math.min(a, b));
}