你好。。
我在应用程序中使用了https://github.com/PhilJay/MPAndroidChart来显示piechart。我想隐藏图像中以白色正方形显示的部分。
我使用了以下代码..
mChart.setDescription("");
mChart.setDrawCenterText(true);
mChart.setDrawHoleEnabled(false);
mChart.setRotationAngle(90);
mChart.setRotationEnabled(false);
mChart.setTouchEnabled(false);
mChart.setCenterText(PTGConstantMethod.getNumberInTwoDigit((float) total));
mChart.setCenterTextTypeface(fontBold);
mChart.setCenterTextSize(getResources().getDimension(R.dimen.text_rate_circle_size));
mChart.setDrawHoleEnabled(true);
mChart.setDrawSliceText(false);
setChartData(aryVals, total);
mChart.animateXY(1000, 1000);
mChart.getLegend().setEnabled(false);
我设置数据的方法是…
private void setChartData(float[] values,double total) {
ArrayList<Entry> yVals = new ArrayList<Entry>();
for (int i = 0; i < values.length; i++) {
yVals.add(new Entry(values[i], i));
}
ArrayList<String> xVals = new ArrayList<String>();
for (int i = 0; i < values.length; i++) {
xVals.add("");
}
PieDataSet set1 = new PieDataSet(yVals, "");
set1.setSliceSpace(0);
ArrayList<Integer> colors = new ArrayList<Integer>();
colors.add(Color.parseColor("#d9534f"));
colors.add(Color.parseColor("#009a20"));
colors.add(Color.parseColor("#5bc0de"));
set1.setColors(colors);
PieData data = new PieData(xVals,set1);
mChart.setData(data);
mChart.highlightValues(null);
mChart.invalidate();
}
有人能帮我隐藏这些价值吗?谢谢你的帮助。
最佳答案
要删除切片文本(来自x-values数组),请调用:pieChart.setDrawSliceText(false)
关于android - Android中的Mpchartlib从饼图中删除切片文本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33081731/