Use the setMargins() method. You can set the margins between the chart and the margins of the screen.
renderer.setMargins(new int[] {30, 100, 10, 0);
The order of values ββin the parameter array: top, left, bottom, right. So you need to increase the left value.
Dan D.
source share