Skip to content

Commit 08052d6

Browse files
committed
Avoid red to show diff better in screenshot tests
1 parent 989ba68 commit 08052d6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/src/main/kotlin/info/appdev/chartexample/LineChartActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class LineChartActivity : DemoBase(), OnSeekBarChangeListener, OnChartValueSelec
105105
labelPosition = LimitLabelPosition.RIGHT_TOP
106106
textSize = 10f
107107
typeface = tfRegular
108-
lineColor = Color.RED
108+
lineColor = Color.CYAN
109109
rangeColor = Color.argb(30, 255, 235, 0)
110110
}
111111

app/src/main/kotlin/info/appdev/chartexample/LineChartActivityColored.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ class LineChartActivityColored : DemoBase() {
110110
val set1 = LineDataSet(values, "DataSet 1")
111111

112112
// set1.setFillAlpha(110);
113-
// set1.setFillColor(Color.RED);
113+
// set1.setFillColor(Color.CYAN);
114114
set1.lineWidth = 1.75f
115115
set1.circleRadius = 5f
116116
set1.circleHoleRadius = 2.5f

chartLib/src/main/kotlin/info/appdev/charting/renderer/RadarChartRenderer.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ open class RadarChartRenderer(
353353

354354
paint.style = Paint.Style.FILL
355355
paint.strokeWidth = 2f
356-
paint.color = Color.RED
356+
paint.color = Color.CYAN
357357

358358
webPaint = Paint(Paint.ANTI_ALIAS_FLAG)
359359
webPaint.style = Paint.Style.STROKE

0 commit comments

Comments
 (0)