我正在使用android-graphview为天气预报应用程序绘制Temps的时间。
在我的标签中" 24小时"我从当前时间开始绘制数据,直到24小时后。我有3小时的天气预报。 为了在x轴上实现正确显示,首先我必须在日期变化时加上时间。因此,如果当前时间是18:00以绘制数据直到tommorow 18:00,那么我绘制的x轴值是 - > 18 21 24 27 30 33 36 39 42。 接下来,我使用标签格式化程序将x轴标签更改为 - > 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);
以下是图表的图片:
答案 0 :(得分:0)
尝试通过
禁用人员舍入 graph.getGridLabelRenderer().setHumanRounding(false);