Androidplot背景,开始,结束值和范围

时间:2016-02-02 22:04:50

标签: android androidplot

我正在尝试使用Androidplot创建自定义XYPlot,但似乎无法完全配置它。

这是我的代码:

    XYSeries series = new SimpleXYSeries(Arrays.asList(dates), Arrays.asList(times), "Time on level");

    // Create a formatter to use for drawing a series using LineAndPointRenderer:
    LineAndPointFormatter formatter = new LineAndPointFormatter(Color.rgb(0, 100, 0), Color.rgb(0, 100, 0), null, new PointLabelFormatter(Color.BLUE));
    totalTimePlot.setRangeValueFormat(new DecimalFormat("#.#"));

    totalTimePlot.setGridPadding(0, 0, 0, 200);
    totalTimePlot.setBackgroundColor(Color.WHITE);
    totalTimePlot.getGraphWidget().getBackgroundPaint().setColor(Color.WHITE);
    totalTimePlot.getGraphWidget().getGridBackgroundPaint().setColor(Color.WHITE);
    totalTimePlot.getGraphWidget().getDomainOriginLinePaint().setColor(Color.BLACK);
    totalTimePlot.getGraphWidget().getRangeOriginLinePaint().setColor(Color.BLACK);

    totalTimePlot.setTicksPerDomainLabel(1);
    totalTimePlot.setRangeStepValue(10);
    totalTimePlot.getGraphWidget().setDomainLabelOrientation(-90);
    totalTimePlot.setMarkupEnabled(false);
    totalTimePlot.setBorderStyle(Plot.BorderStyle.SQUARE, null, null);

    totalTimePlot.setDomainValueFormat(new Format() {
        SimpleDateFormat sdf = new SimpleDateFormat("EEE(MM.dd)-HH:mm:ss");

        @Override
        public StringBuffer format(Object object, StringBuffer buffer, FieldPosition field) {
            long timestamp = ((Number) object).longValue();
            Date date = new Date(timestamp);
            return sdf.format(date, buffer, field);
        }

        @Override
        public Object parseObject(String string, ParsePosition position) {
            return null;
        }
    });

    totalTimePlot.getGraphWidget().setPaddingLeft(4);
    totalTimePlot.addSeries(series, formatter);

这是最终结果:

enter image description here

你可以看到这非常难看。你能帮助我至少配置它,以便显示范围标签。我还想知道如何使背景变白并且可以看到第一个和最后一个“滴答声”。

谢谢。

编辑:

我设法通过设置边界来包含第一个和最后一个值。但其他问题仍然存在。

1 个答案:

答案 0 :(得分:0)

同意它非常难看:-)如果你列出一些你想要改进的具体项目会更容易给你建议。话虽如此,我将从以下几点开始:

  • 使用DemoApp's SimpleXYPlotActivity xml style作为起点。这应该可以解决您的保证金问题并改善整体外观。
  • 简化域名标签的日期/时间格式。也许像日/月时:分钟。我不知道你的确切用例,所以也许你需要你正在使用的格式。
  • 摆脱构成情节的黑暗背景。
  • 考虑使用CatmullRomInterpolator绘制平滑线。