更改条形图文本mpandroidchart的字体大小

时间:2015-08-11 06:27:58

标签: android xml android-studio charts mpandroidchart

我尝试使用以下方法更改mpandroidchart条形图中值的文本大小

barChart.getXAxis().setTextSize(5f);

但它有效。

1 个答案:

答案 0 :(得分:0)

将此代码段复制到库的Chart.java文件中并使用它:

/**
     * Sets the font size of the values that are drawn inside the chart.
     * 
     * @param size
     */
    public void setValueTextSize(float size) {
        mValuePaint.setTextSize(Utils.convertDpToPixel(size));
    }

然后在需要时致电 mChart.setValueTextSize(...)