getGreatestShapeSize method

double getGreatestShapeSize()

Returns the maximum shape-size across all DataSets.

@return

Implementation

double getGreatestShapeSize() {
  double max = 0;

  for (IScatterDataSet set in dataSets) {
    double size = set.getScatterShapeSize();

    if (size > max) max = size;
  }

  return max;
}