calcMinMax1 method

void calcMinMax1(
  1. T? e
)

Updates the min and max x and y value of this DataSet based on the given Entry.

@param e

Implementation

void calcMinMax1(T? e) {
  if (e == null) return;

  calcMinMaxX1(e);

  calcMinMaxY1(e);
}