if (! listGraficos.isSelectionEmpty())
medida = listGraficos.getSelectedValue().toString();
double min = 180, max = 0;
for(int i = values.length - 1; i>=0; i-- ){
Sessao s = (Sessao) values[i];
s.carregaMedicoes();
if (s != null && s.getMedicoes() != null){
for (Medicao m : s.getMedicoes()){
if (m.getNome().equals(medida + "min") && chkValorMinimo.isSelected()){
traceMin.addPoint(s.getData().getTime(), m.getValor());
min = (m.getValor() < min)?m.getValor():min;