3

我想绘制一个时间图,其中时间(以小时为单位)在 x 轴上,值应该在 y 轴上。有没有图书馆可以做到这一点?我尝试使用achartengine http://wptrafficanalyzer.in/blog/android-drawing-time-chart-with-timeseries-in-achartengine/但没有多大帮助。

4

1 回答 1

5

您可以使用 GraphView 来执行此操作。

http://www.jjoe64.com/p/graphview-library.html

https://github.com/jjoe64/GraphView

你必须使用一个Custom label formatter. 有一个示例,其中 X 值显示为 DateTime。

GraphView graphView = new LineGraphView(this, "example") {
   @Override
   protected String formatLabel(double value, boolean isValueX) {
      if (isValueX) {
         // convert unix time to human time
         return dateTimeFormatter.format(new Date((long) value*1000));
      } else return super.formatLabel(value, isValueX); // let the y-value be normal-formatted
   }
};

根据您的目的修改它应该很容易。

于 2013-06-06T10:19:20.800 回答