赞
踩
MPAndroidChart PieChart中无数据默认图 显示“No chart data available.”
我们可以用以下方法修改默认设置,可以定义文字、颜色、字体
mPieChart.setNoDataText("暂无数据");
//设置字体颜色
mPieChart.setNoDataTextColor(ContextCompat.getColor(this, R.color.颜色ID));
//设置字体大小 单位默认px 可以用工具类转换dip2px 等
Paint paint = mPieChart.getPaint(Chart.PAINT_INFO);
paint.setTextSize(DensityUtils.dip2px(this, 14));
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。