使用Graphview在android中绘制图形?

时间:2014-10-24 07:59:53

标签: android graph scrollview

我想在我的Android应用程序上创建条形图。
我需要 scrollView 上的图表。

我已经尝试过GraphViewAndroidPlot

1 个答案:

答案 0 :(得分:6)

<强>更新

GraphView的新更新不支持此方法

使用GraphView:

我在下面创建了一个函数,它将三个数组作为参数。第一个采用X轴标签,接下来采用Y轴标签,最后采用值绘制。

<强>代码

private void renderGraph(String[] xAxis, String[] yAxis, float[] data) {

        GraphViewData[] data = new GraphViewData[xAxis.length];//this class is defined below

        double v = 1, w = 1;
        int num = xAxis.length;
        for (int j = 0; j < num; j++) {
            v = data[j];
            data[j] = new GraphViewData(j, v);
        }
        GraphViewSeries example1 = new GraphViewSeries(data);
        GraphView graphView = new BarGraphView(this, "GRAPH TITLE");
        graphView.setVerticalLabels(yAxis);
        graphView.setHorizontalLabels(xAxis);
        graphView.addSeries(example1);
        example1.getStyle().color = Color.BLUE;
        graphView.setScalable(true);
        graphView.getGraphViewStyle().setTextSize(18);
        graphView.setScrollable(false);
        graphView.getGraphViewStyle().setGridColor(Color.DKGRAY);
        graphView.getGraphViewStyle().setGridStyle(GridStyle.VERTICAL);
        graphView.getGraphViewStyle().setNumHorizontalLabels(5);
        LinearLayout layout = (LinearLayout) findViewById(R.id.graphz);//graphz is defined in layout
        layout.addView(graphView);
    }

GraphViewData类:

这个类与文档中给出的类略有不同。

   public class GraphViewData implements GraphViewDataInterface {

    private double x, y;

    public GraphViewData(double x, double y) {
        super();
        this.x = x;
        this.y = y;
    }

    @Override
    public double getX() {
        // TODO Auto-generated method stub
        return this.x;
    }

    @Override
    public double getY() {
        // TODO Auto-generated method stub
        return this.y;
    }
}

P.S。

将此方法称为:

String[] xAxis = {"RED","WHITE","BLUE","GREEN"};
String[] yAxis = {"GOOD", "AVEGRAGE", "BAD"};
String[] data = {"1", "2", "1","2"};
renderGraph(xAxis, yAxis, data);