fix iob rendering 2

This commit is contained in:
Milos Kozak 2017-04-24 14:18:54 +02:00
parent 80305aae3a
commit 0942ffe0fa

View file

@ -1045,6 +1045,7 @@ public class OverviewFragment extends Fragment implements View.OnClickListener,
LineGraphSeries<DataPoint> cobSeries; LineGraphSeries<DataPoint> cobSeries;
Double maxIobValueFound = 0d; Double maxIobValueFound = 0d;
Double maxCobValueFound = 0d; Double maxCobValueFound = 0d;
Long lastTime = 0L;
if (showIobView.isChecked() || showCobView.isChecked()) { if (showIobView.isChecked() || showCobView.isChecked()) {
List<DataPoint> iobArray = new ArrayList<>(); List<DataPoint> iobArray = new ArrayList<>();
@ -1060,7 +1061,9 @@ public class OverviewFragment extends Fragment implements View.OnClickListener,
//cobArray.add(new DataPoint(time, mealData.mealCOB)); //cobArray.add(new DataPoint(time, mealData.mealCOB));
//maxCobValueFound = Math.max(maxCobValueFound, mealData.mealCOB); //maxCobValueFound = Math.max(maxCobValueFound, mealData.mealCOB);
} }
lastTime = time;
} }
iobArray.add(new DataPoint(lastTime, 0)); // close the path
iobArray.add(new DataPoint(fromTime, 0)); // close the path iobArray.add(new DataPoint(fromTime, 0)); // close the path
DataPoint[] iobData = new DataPoint[iobArray.size()]; DataPoint[] iobData = new DataPoint[iobArray.size()];
iobData = iobArray.toArray(iobData); iobData = iobArray.toArray(iobData);