I\'m using MPChartlib for a basic \"Barchart\" (3 bars and values between 0 and 100).
the background of the app is dark so I\'d like to put the text in white but when I
You are passing the resource id to the library, not the actual color.
Use this to get the color:
int color = ContextCompat.getColor(context, R.color.chart_color); LineDataSet dataSet = ...; dataSet.setColor(color);
You can also find this in the documentation.