Changing color of graph axis

I am making graphs and want to change the color of a y axis when I have several of them.

There doesn’t seem to be a setColor method on the axis, but there is one on the labels. So, I have something like

        YAxis yaxis = new YAxis();
        Labels ylabels = yaxis.getLabels();
        ylabels.setColor(SolidColor.BLUE);
        yaxis.setLabels(ylabels);
        yaxis.setType(AxisType.LINEAR );
        yaxis.setTitle(it.name);
        conf.addyAxis(yaxis);

I can change colors in the lines on the line charts, and I’ve managed to get just about everything to work that I want. But when I have more than one y axis, I’d like to be able to set their color so that I can show which lines go with which axis, and it is annoying that I can’t seem to get it to work. Has someone else managed to change color of an axis or a part of an axis?

I guess you are talking about the coloring of the axis ticks.

YAxis has the methods:
setTickColor(Color tickColor) and setMinorTickColor(Color minorTickColor)