isFullyZoomedOutY method

bool isFullyZoomedOutY()

Returns true if the chart is fully zoomed out on it's y-axis (vertical).

@return

Implementation

bool isFullyZoomedOutY() {
  return !(_scaleY > _minScaleY || _minScaleY > 1);
}