Is it possible with MPAndroidChart (or any other Android chart library) to fill the chart under the draw line with a gradient color? Something like this:
set
Okay i have found a solution:
William Chart and i am using this method:
int[] colors = { getResources().getColor(R.color.menu_text), getResources().getColor(android.R.color.white) }; float[] index = { 0, 1 }; dataset.setGradientFill(colors, index);