yMax property

num yMax
inherited

Implementation

num get yMax => yRange.maximum;
void yMax=(num value)
inherited

Implementation

set yMax(num value) {
  if (yRange.maximum != value) {
    yRange.maximum = value;
    yAxis?._needsRangeUpdate = true;
  }
}