When I customize the labels of the X axis like this:
for(int i = 0; i < values.getXNumLabels(); i++)
{
if(i == 0)
mRenderer.addXTextLabel(0, escala );
else if(i == values.getXNumLabels()-1)
mRenderer.addXTextLabel(values.getXNumLabels()-1, "end");
else
mRenderer.addXTextLabel(i, "label");
}
The vertical lines of the grid disappear. I set the grid lines:
mRenderer.setShowGridX(true);
mRenderer.setShowGridY(true);
And the engine just paint the lines of the grid for the Y axis.
Original issue reported on code.google.com by el.pada...@gmail.com on 25 Apr 2014 at 9:09
Original issue reported on code.google.com by
el.pada...@gmail.com
on 25 Apr 2014 at 9:09