繁体   English   中英

格式化标签时,Android GraphView不正确的X轴步骤

[英]Android GraphView incorrect X-axis steps when formatting labels

我正在使用android-graphview来绘制天气预报应用的时间。

在我的标签“24小时”中,我绘制了当前时间和24小时后的数据。 我有3小时的天气预报。 为了在x轴上实现正确显示,首先我必须在日期变化时加上时间。 因此,如果当前时间是18:00将数据绘制到tommorow 18:00,那么我绘制的x轴值是 - > 18 21 24 27 30 33 36 39 42.接下来,我使用标签格式化器来更改x -axis标签到 - > 18 21 0 3 6 9 12 15 18.图表在正确的点上正确显示,但标签的步骤为2而不是3,但范围是正确的。

System.out.println(“WHAT1?”..正确显示输入数据点对,小时数以3为单位增加,但System.out.println(“pout”..和“pour”显示x轴值增加以2为步长(虽然位于正确的位置)。如何在3小时步骤中显示标签?

我究竟做错了什么? 这是代码:

DataPoint b= new DataPoint(0,0);//test
            DataPoint[] point_array= new DataPoint[9];
            String[] time_label_24=new String[9];

            GraphView graph = (GraphView) findViewById(R.id.graph);
            hour=Integer.parseInt(Lista.get(x)[15]);

            for(int i=x;i<=x+8;i++){   
                if((i-x)<Lista.size()) {
                    b = new DataPoint(hour, Float.parseFloat(Lista.get(i)[4]));
                    point_array[i - x] = b;
                    System.out.println("WHAT1? " + (i - x) + "  " + point_array[i - x] + "  " + hour);
                    time_label_24[i-x]=Lista.get(i)[15];
                    hour = hour + 3;
                }
            }

            LineGraphSeries<DataPoint> series = new LineGraphSeries<DataPoint>(point_array);   
            graph.addSeries(series);                                                             


            h=Integer.parseInt(Lista.get(x)[15]);

            graph.getViewport().setXAxisBoundsManual(true);

            //graph.getViewport().setMinX(Integer.parseInt(Lista.get(x)[15])-1);
            //graph.getViewport().setMaxX(Integer.parseInt(Lista.get(x)[15])+8*3+1);

            graph.getViewport().setMinX(Integer.parseInt(Lista.get(x)[15]));
            graph.getViewport().setMaxX(Integer.parseInt(Lista.get(x)[15])+8*3);

            graph.getGridLabelRenderer().setNumHorizontalLabels(9);  //9

            graph.getGridLabelRenderer().setTextSize(12f);
            graph.getGridLabelRenderer().reloadStyles();



            graph.getGridLabelRenderer().setLabelFormatter(new DefaultLabelFormatter() {
                @Override
                public String formatLabel(double value, boolean isValueX) {
                    int xylabel;
                    if (isValueX) {

                        if (value < 24) {
                            System.out.println("pout "+value+"  " + String.valueOf(value));
                            xylabel = (int) Math.round(value);
                            return String.valueOf(xylabel);  
                        } else{
                            System.out.println("pour "+value+"  " + String.valueOf(value%24));
                            xylabel = (int) Math.round(value);
                            return String.valueOf(xylabel%24); 
                        }
                    }else {
                        xylabel = (int) Math.round(value);
                        return String.valueOf(xylabel); // let graphview generate Y-axis label for us
                    }
                }
            });
        ////////


            hour=Integer.parseInt(Lista.get(x)[15]);
            for(int i=x;i<=x+8;i++){   // Same process for Temp FEEL                                        
                if((i-x)<Lista.size()) {
                    b = new DataPoint(hour, Float.parseFloat(Lista.get(i)[13]));
                    point_array[i - x] = b;
                    hour = hour + 3;
                    time_label_24[i-x]=Lista.get(i)[15];         
                    System.out.println("What2? " + point_array[i - x]);
                }
            }



            LineGraphSeries<DataPoint> series2 = new LineGraphSeries<DataPoint>(point_array);
            graph.addSeries(series2);

            series.setTitle("Temp");
            series2.setTitle("Feel");

            series.setColor(Color.WHITE);
            series2.setColor(Color.RED);

            graph.getLegendRenderer().setVisible(true);
            graph.getLegendRenderer().setAlign(LegendRenderer.LegendAlign.TOP);

这是图表的图像:

结果图

尝试通过禁用人工舍入

graph.getGridLabelRenderer().setHumanRounding(false);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM