Search code examples
androidandroidplot

AndroidPlot Change color of domain and range labels


I am using the AndroidPlot library and am trying to change the colour of the domain and range labels.

I set them like so:

//Setting the names of the axis
XYPlot.setRangeLabel("# of Alerts");
XYPlot.setDomainLabel("Day"); 

By default they are white but are barely visible against my cream background. Does anyone know how I can change these to black please?


Solution

  • You want something like

        mTripPlot.getGraphWidget().getDomainLabelPaint().setColor(my_colour);
    

    For the label it would be something like

        mTripPlot.getDomainLabelWidget().getLabelPaint().setColor(my_colour);