GraphView -> 4.2.2

This commit is contained in:
Milos Kozak 2022-05-25 16:21:37 +02:00
parent 5aa1d988b1
commit 4350a2d5d1
6 changed files with 21 additions and 11 deletions

View file

@ -110,6 +110,9 @@ public class FixedLineGraphSeries<E extends DataPointInterface> extends BaseSeri
init();
}
@Override public void drawSelection(GraphView mGraphView, Canvas canvas, boolean b, DataPointInterface value) {
}
/**
* do the initialization
* creates internal objects
@ -144,8 +147,8 @@ public class FixedLineGraphSeries<E extends DataPointInterface> extends BaseSeri
double maxY;
double minY;
if (isSecondScale) {
maxY = graphView.getSecondScale().getMaxY();
minY = graphView.getSecondScale().getMinY();
maxY = graphView.getSecondScale().getMaxY(false);
minY = graphView.getSecondScale().getMinY(false);
} else {
maxY = graphView.getViewport().getMaxY(false);
minY = graphView.getViewport().getMinY(false);

View file

@ -54,8 +54,8 @@ class ActivityGraph : GraphView {
it.color = Color.MAGENTA
it.backgroundColor = Color.argb(70, 255, 0, 255)
})
secondScale.minY = 0.0
secondScale.maxY = 1.0
secondScale.setMinY(0.0)
secondScale.setMaxY(1.0)
gridLabelRenderer.verticalLabelsSecondScaleColor = Color.MAGENTA
}
}

View file

@ -122,7 +122,7 @@ class PrepareTreatmentsDataWorker(
?.let(::addUpperChartMargin)
?.let { data.overviewData.maxTherapyEventValue = maxOf(data.overviewData.maxTherapyEventValue, it) }
data.overviewData.treatmentsSeries = PointsWithLabelGraphSeries(filteredTreatments.toTypedArray())
data.overviewData.treatmentsSeries = PointsWithLabelGraphSeries(filteredTreatments.sortedBy { it.x }.toTypedArray())
data.overviewData.therapyEventSeries = PointsWithLabelGraphSeries(filteredTherapyEvents.toTypedArray())
data.overviewData.epsSeries = PointsWithLabelGraphSeries(filteredEps.toTypedArray())

View file

@ -46,8 +46,7 @@ dependencies {
api 'com.madgag.spongycastle:core:1.58.0.0'
api "com.google.crypto.tink:tink-android:$tink_version"
// Graphview cannot be upgraded
api "com.jjoe64:graphview:4.0.1"
api "com.jjoe64:graphview:4.2.2"
//db
api "com.j256.ormlite:ormlite-core:$ormLite_version"

View file

@ -26,6 +26,7 @@ import android.graphics.Path;
import com.jjoe64.graphview.GraphView;
import com.jjoe64.graphview.series.BaseSeries;
import com.jjoe64.graphview.series.DataPointInterface;
import java.util.Iterator;
@ -129,6 +130,9 @@ public class AreaGraphSeries<E extends DoubleDataPoint> extends BaseSeries<E> {
init();
}
@Override public void drawSelection(GraphView mGraphView, Canvas canvas, boolean b, DataPointInterface value) {
}
/**
* do the initialization
* creates internal objects
@ -164,8 +168,8 @@ public class AreaGraphSeries<E extends DoubleDataPoint> extends BaseSeries<E> {
double maxY;
double minY;
if (isSecondScale) {
maxY = graphView.getSecondScale().getMaxY();
minY = graphView.getSecondScale().getMinY();
maxY = graphView.getSecondScale().getMaxY(false);
minY = graphView.getSecondScale().getMinY(false);
} else {
maxY = graphView.getViewport().getMaxY(false);
minY = graphView.getViewport().getMinY(false);

View file

@ -14,6 +14,7 @@ import androidx.core.content.ContextCompat;
import com.jjoe64.graphview.GraphView;
import com.jjoe64.graphview.series.BaseSeries;
import com.jjoe64.graphview.series.DataPointInterface;
import java.util.Iterator;
@ -79,6 +80,9 @@ public class PointsWithLabelGraphSeries<E extends DataPointWithLabelInterface> e
init();
}
@Override public void drawSelection(GraphView mGraphView, Canvas canvas, boolean b, DataPointInterface value) {
}
/**
* init the internal objects
* set the defaults
@ -109,8 +113,8 @@ public class PointsWithLabelGraphSeries<E extends DataPointWithLabelInterface> e
double maxY;
double minY;
if (isSecondScale) {
maxY = graphView.getSecondScale().getMaxY();
minY = graphView.getSecondScale().getMinY();
maxY = graphView.getSecondScale().getMaxY(false);
minY = graphView.getSecondScale().getMinY(false);
} else {
maxY = graphView.getViewport().getMaxY(false);
minY = graphView.getViewport().getMinY(false);