Does anyone know how to change the location of the legend? I am trying to expand the graph to make use of all the space.
So far I have
mRenderer.setMargins(new int[] { 20, 30, -50, 0 });
This expands the graph lower but the legend stays in the same location so it is now above the x axis
I tried
mRenderer.setLegendHeight(5);
with both negative and positive values. I'm not sure what this is supposed to do but it makes my graph go wayyyy low on the the screen (turns it into a scrollable view).
Also, may not be important but this is in a fragment and is a XYChart type.