我尝试使用以下方法更改mpandroidchart条形图中值的文本大小
barChart.getXAxis().setTextSize(5f);
但它有效。
答案 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(...)
。