From 3758897beac37bf0384f10431610e7e3f259dd93 Mon Sep 17 00:00:00 2001 From: Milos Kozak Date: Tue, 30 Nov 2021 22:33:12 +0100 Subject: [PATCH] EPS text filled #2 --- .../overview/graphExtensions/PointsWithLabelGraphSeries.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/main/java/info/nightscout/androidaps/plugins/general/overview/graphExtensions/PointsWithLabelGraphSeries.java b/core/src/main/java/info/nightscout/androidaps/plugins/general/overview/graphExtensions/PointsWithLabelGraphSeries.java index 5fdc38b7ee..4067810b2c 100644 --- a/core/src/main/java/info/nightscout/androidaps/plugins/general/overview/graphExtensions/PointsWithLabelGraphSeries.java +++ b/core/src/main/java/info/nightscout/androidaps/plugins/general/overview/graphExtensions/PointsWithLabelGraphSeries.java @@ -277,6 +277,7 @@ public class PointsWithLabelGraphSeries e float py = (float) (graphHeight * ratY + bounds.width() + 10); canvas.save(); canvas.rotate(-90, px, py); + mPaint.setStyle(Paint.Style.FILL_AND_STROKE); canvas.drawText(value.getLabel(), px, py, mPaint); mPaint.setStyle(Paint.Style.STROKE); canvas.drawRect(px - 3, bounds.top + py - 3, bounds.right + px + 3, bounds.bottom + py + 3, mPaint);