gpt4 book ai didi

android - MPAndroid 图表按日期

转载 作者:搜寻专家 更新时间:2023-11-01 09:24:25 27 4
gpt4 key购买 nike

我有一个包含级别(y 轴)、类型(颜色)和日期(x 轴)的日期对象。

我知道我可以制作 grouped barchart使用 MPAndroidChart 但如何更改 x 值以显示日期?

chart

最佳答案

像这样使用 IAxisValueFormatter:

public class MyYAxisValueFormatter implements IAxisValueFormatter {

private SimpleDateFormat mFormat;

public MyAxisValueFormatter() {

// format values to 1 decimal digit
mFormat = new SimpleDateFormat("MMM dd");
}

@Override
public String getFormattedValue(float value, AxisBase axis) {
// "value" represents the position of the label on the axis (x or y)
return mFormat.format(value);
}

/** this is only needed if numbers are returned, else return 0 */
@Override
public int getDecimalDigits() { return 0; }
}

关于android - MPAndroid 图表按日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51864825/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com