I'd love to have full-bleed graphs (without having to fork over a one-line change :))

While we can set Chart#setOffsets(0, 0, 0, 0); it seems that BarLineChartBase enforces a minimum offset of 11dp. Perhaps I'm missing something?
Anyway, all I'm trying to say is I Love your work. Much thanks. :+1:
:+1:
The latest commit: https://github.com/PhilJay/MPAndroidChart/commit/74c4c166a5483fd18ec4bf25b9f103197a13dc9b allows this.
The feature can be seen in this demo-activity: https://github.com/PhilJay/MPAndroidChart/blob/master/MPChartExample/src/com/xxmassdeveloper/mpchartexample/LineChartActivityColored.java
your_chart.setViewPortOffsets(15f, 15f, 15f, 15f); << put here 0f if you want 0 padding.
Most helpful comment
your_chart.setViewPortOffsets(15f, 15f, 15f, 15f); << put here 0f if you want 0 padding.