Achartengine for Android

I am using Achartengine to create a graph in my application. I want my X-axes to be string while I'm here:

public class LineGraph {
    public Intent getIntent(Context context){
        String[] x = { "a", "b" };
        int[] y = { 1 , 2 };

        TimeSeries series = new TimeSeries("Line");
        for(int i = 0; i < x.length; i++){
            series.add(x, y);
        }

        ...
    }
}

      

+3


source to share


1 answer


You can add custom X-axis text labels as follows:



renderer.addXTextLabel(x, "text");

      

+1


source







All Articles