我创建60个DataPoint(每小时一分钟),并在图表上显示它们。为x轴设置7个标签。带日期的标签。
最左边的标签和最右边的标签与x轴的起点和终点不一致。此屏幕截图显示了不匹配的内容:
代码:
private void updateGraph(){
DataPoint[] dataPoints = new DataPoint[mCurrencyStampList.size()];
int i = 0;
Double minY = null;
Double maxY = 0D;
for(CurrencyStamp stamp : mCurrencyStampList){
dataPoints[i] = new DataPoint(stamp.getDate(), stamp.getClose());
if(maxY < stamp.getClose()){
maxY = stamp.getClose().doubleValue();
}
if(minY == null || minY > stamp.getClose()){
minY = stamp.getClose().doubleValue();
}
i++;
}
LineGraphSeries<DataPoint> points = new LineGraphSeries<>(dataPoints);
mGraphView.addSeries(points);
DateFormat dateFormat = android.text.format.DateFormat.getTimeFormat(getContext());
mGraphView.getGridLabelRenderer().setLabelFormatter(new DateAsXAxisLabelFormatter(getActivity(), dateFormat));
mGraphView.getGridLabelRenderer().setTextSize(32);
mGraphView.getGridLabelRenderer().setNumHorizontalLabels(7);
double minX = mCurrencyStampList.get(0).getDate().getTime();
double maxX = mCurrencyStampList.get(mCurrencyStampList.size()-1).getDate().getTime();
mGraphView.getViewport().setMinimalViewport(minX, maxX, minY == null ? 0 : minY, maxY);
mGraphView.getViewport().setXAxisBoundsManual(true);
mGraphView.getViewport().setYAxisBoundsManual(true);
}
图形的划分在时间上不一致。如何解决这个问题?
upd: 我想我理解为什么极限线会移到中心。转换为双精度时,unix时间戳失去精度。我不知道该如何解决。 Mpandroidchart库上的相同问题。我尝试了AnyChart的试用版,对我来说很好(在点的构造函数中使用了自己的格式。不是float和double),但是这次试用
答案 0 :(得分:0)
我迁移到MPAndroid并应用了系数。只需沿x轴设置最小值和最大值:
xAxis.setAxisMinimum(0);
xAxis.setAxisMaximum(100000);
创建系数:
long xMin = mCurrencyStampList.get(0).getDate().getTime();
long xMax = mCurrencyStampList.get(mCurrencyStampList.size() - 1).getDate().getTime();
float xCoefficient = (xMax - xMin) / 100000;
多个x值不同:
long currentTS = s.getDate().getTime();
Float x = (currentTS - xMin) / xCoefficient;
然后在小部件中显示返回值:
XAxis xAxis = mLineChart.getXAxis();
xAxis.setValueFormatter((value, axis) -> {
Long time = (long) (value * xCoefficient + xMin);
Date date = new Date(time);
DateFormat format;
if(mInterval == Interval.OneHour || mInterval == Interval.SixHours || mInterval == Interval.OneDay){
format = android.text.format.DateFormat.getTimeFormat(getContext());
}
else {
format = android.text.format.DateFormat.getDateFormat(getContext());
}
return format.format(date);
});
不是完美的解决方案,但适用于unix时间戳