10

我正在使用 GraphView 库(参见:https ://github.com/jjoe64/GraphView或http://www.jjoe64.com/p/graphview-library.html

但我想为 X-as 使用日期/时间。有谁知道实现这一目标的简单方法,或者任何人都可以将我推向正确的方向吗?

4

4 回答 4

13

这是执行此操作的正确方法

您只需使用 unix 时间戳(从 1.01.1970 开始的秒数)作为 x 值。

然后您可以设置自定义标签格式化程序并将 unix 时间戳转换为字符串:

final java.text.DateFormat dateTimeFormatter = DateFormat.getTimeFormat(mActivity);

LineGraphView graphView = new LineGraphView(mActivity, entry.getValue()) {
    @Override
    protected String formatLabel(double value, boolean isValueX) {
        if (isValueX) {
            // transform number to time
            return dateTimeFormatter.format(new Date((long) value*1000));
        } else {
            return super.formatLabel(value, isValueX);
        }
    }
};
于 2012-09-17T08:41:39.647 回答
2

GraphView 是一个很棒的库,我发现它也是最简单的。这样做的第一步是在 GraphView.java 的 GraphViewData 类中添加一个字符串变量。像这样:

static public class GraphViewData {
    public final double valueX;
    public final double valueY;
    public final String valueDate;

    public GraphViewData(double valueX, double valueY,String valueDate) {
        super();
        this.valueX = valueX;
        this.valueY = valueY;
        this.valueDate = valueDate;
    }
}

当您在创建 GraphView 图表时创建 GraphViewData 对象时,您需要以字符串形式添加日期数据(连同 X 和 Y)。

假设您的图表中有 80 个数据点(索引 0 - 79)。GraphView 中有一个方法负责生成和返回水平标签,我相信它叫做generateHorLabels。不只是返回 X 值 (0-79),而是使用 X 值从 GraphData 对象中获取字符串。

在您现在拥有的代码中,它应该在for循环中包含以下内容

labels[i] = formatLabel(min + ((max-min)*i/numLabels), true);

而不是上面的,你可以做这样的事情。

Double temp =  Double.valueOf(formatLabel(min + ((max-min)*i/numLabels), true));
int rounded =(int)Math.round(temp); 
labels[i] = values[rounded].valueDate;

希望这有帮助!

于 2012-05-16T21:06:52.823 回答
1

这是来自 jjoe64 的更新答案,其中 x 值是从 Date#getTime() 获得的

    final DateFormat dateTimeFormatter = DateFormat.getDateTimeInstance();        
    graphView = new LineGraphView(context, "Chart");
    graphView.setCustomLabelFormatter(new CustomLabelFormatter() 
    {
        @Override
        public String formatLabel(double value, boolean isValueX) 
        {
            if (isValueX)
            {
                return dateTimeFormatter.format(new Date((long) value));
            }
            return null; // let graphview generate Y-axis label for us
        }
    });
于 2014-05-23T05:31:10.887 回答
0

我在设置值的同时创建了水平标签:

public void initializeLineGraphView() {

    // Get last weeks entries from the DB
    ArrayList<Entry> entries = DbManager.getInstance().getLastWeeksEntries(new Date());
    String[] hLabels = new String[entries.size()];
    GraphView.GraphViewData[] graphViewData = new GraphView.GraphViewData[entries.size()];

    for(int i = 0; i < entries.size(); i++) {

        Entry entry = entries.get(i);
        int pain = entry.getPain();
        graphViewData[i] = new GraphView.GraphViewData(i, pain);

        // Generate the horizontal labels
        SimpleDateFormat sdf = new SimpleDateFormat("EEE");
        String dayOfWeek = sdf.format(entry.getDate());
        hLabels[i] = dayOfWeek;

    }

    mSeries = new GraphViewSeries("", null, graphViewData);
    GraphView graphView = new LineGraphView(getActivity(), "");
    graphView.addSeries(mSeries);
    graphView.setHorizontalLabels(hLabels);
    graphView.setVerticalLabels(new String[] {"10", "5", "0"});
    mLineGraphView = graphView;

}
于 2014-05-28T13:43:35.610 回答