traceAvg.addPoint(s.getData().getTime(), m.getValor());
min = (m.getValor() < min)?m.getValor():min;
max = (m.getValor() > max)?m.getValor():max;
}
if (m.getNome().equals(medida + "max") && chkValorMax.isSelected()){
traceMax.addPoint(s.getData().getTime(), m.getValor());
min = (m.getValor() < min)?m.getValor():min;
max = (m.getValor() > max)?m.getValor():max;
}
}
}