我有一个在x轴和y轴上都带有浮点值的lineGraph吗?我的问题是我如何在x轴上设置字符串值,例如日期或月份名称。我正在使用GraphView-3.0.jar库。我的代码是

values_list.add(1.0);
values_list.add(5.0);
values_list.add(9.0);
values_list.add(12.0);
values_list.add(17.0);
values_list.add(1.0);
values_list.add(13.0);
values_list.add(23.0);
graphData = new GraphViewData[(values_list.size())];
double price_copy = 0;
for (int i = 0; i < values_list.size(); i++) {
    price_copy = values_list.get(i);
    graphData[i] = new GraphViewData(i, price_copy);

}
GraphView graphView;

graphView = new LineGraphView(this // context
        , "" );// graphView.addSeries(exampleSeries);// data
graphView.addSeries(new GraphViewSeries("values",
        new GraphViewStyle(Color.rgb(00, 00, 128), 3),
        graphData));

graphView.setShowLegend(true);
// set view port, start=2, size=40
graphView.setViewPort(0, 10);
graphView.setScalable(true);
graphView.setScrollable(true);

LinearLayout layout = (LinearLayout) findViewById(R.id.LNL_CHART);
layout.addView(graphView);


我也不知道关于AchartEngine,提前感谢。

最佳答案

使用achartengine库。您可以在Google上搜索。它帮助了我。谢谢

关于android - 在图表的x轴上设置字符串值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13951564/

10-11 01:08