Skip to content

Commit 01e254d

Browse files
authored
Merge pull request #21476 from wordpress-mobile/issue/21366-stats-dark-mode
Stats: Use correct color for visitors
2 parents 8a94a26 + c4ae15f commit 01e254d

File tree

1 file changed

+1
-1
lines changed
  • WordPress/src/main/java/org/wordpress/android/ui/stats/refresh/lists/sections/viewholders

1 file changed

+1
-1
lines changed

WordPress/src/main/java/org/wordpress/android/ui/stats/refresh/lists/sections/viewholders/BarChartViewHolder.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ class BarChartViewHolder(parent: ViewGroup) : BlockListItemViewHolder(
231231
private fun buildOverlappingDataSet(context: Context, cut: List<BarEntry>): BarDataSet {
232232
val dataSet = BarDataSet(cut, "Overlapping data")
233233
chart.renderer.paintRender.shader = null
234-
dataSet.color = ContextCompat.getColor(context, R.color.primary_60)
234+
dataSet.color = ContextCompat.getColor(context, R.color.stats_bar_chart_bottom)
235235
dataSet.formLineWidth = 0f
236236
dataSet.setDrawValues(false)
237237
dataSet.isHighlightEnabled = true

0 commit comments

Comments
 (0)