MPAndroidChart – 向条形图添加标签

我的应用程序必须在条形图的每个条上都有一个标签.有没有办法用MPAndroidChart做到这一点?我找不到在项目wiki / javadocs上执行此操作的方法.

如果没有办法做到这一点是否还有另一个允许我使用的软件?

MPAndroidChart  – 向条形图添加标签

解决方法:

更新的答案(MPAndroidChart v3.0.1)

作为这样一个常用的功能,该库的v3.0.1完全为此添加了IndexAxisValueFormatter类,所以它现在只是一行代码:

mBarChart.getXAxis().setValueFormatter(new IndexAxisValueFormatter(labels));

以下原始答案中的ProTip仍然适用.

原始答案(MPAndroidChart v3.0.0)

对于库的v3.0.0,没有直接设置条形标签的方法,但是使用ValueFormatter接口有一个相当不错的解决方法.

像这样创建一个新的格式化程序:

public class LabelFormatter implements IAxisValueFormatter {
    private final String[] mLabels;

    public LabelFormatter(String[] labels) {
        mLabels = labels;
    }

    @Override
    public String getFormattedValue(float value, AxisBase axis) {
        return mLabels[(int) value];
    }
}

然后将此格式化程序设置为x轴(假设您已经创建了包含标签的String []):

mBarChart.getXAxis().setValueFormatter(new LabelFormatter(labels));

ProTip:如果要删除放大条形图时出现的额外标签,可以使用粒度功能:

XAxis xAxis = mBarChart.getXAxis();
xAxis.setGranularity(1f);
xAxis.setGranularityEnabled(true);
上一篇:是否可以使用MPAndroidChart创建多色(堆叠)条形图?


下一篇:如何在MPAndroidChart中更改LineGraph的内圆颜色?