私はAndroidアプリでパイチャートを作成しましたが、middlleに白いcerceがありますが、削除しようとしましたがt even the
piechart.setCentralCirculaire`は機能しません私のコードで。とにかく私はその感謝をすることができますか?中央の白丸を円グラフで削除するには
pieChart=(PieChart)findViewById(R.id.Piechart);
pieChart.setRotationEnabled(true);
addDataSet();
private void addDataSet(){
Log.d(TAG, "addDataSet: ");
ArrayList<PieEntry> yEntrys=new ArrayList<>();
yEntrys.add(new PieEntry(15.0f, "LOW"));
yEntrys.add(new PieEntry(50.0f,"Normal"));
yEntrys.add(new PieEntry(25.0f,"hyper"));
PieDataSet pieDataSet= new PieDataSet(yEntrys,"Employee Global Activity");
pieDataSet.setSliceSpace(2);
pieDataSet.setValueTextSize(12);
ArrayList<Integer> colors =new ArrayList<>();
colors.add(Color.RED);
colors.add(Color.BLUE);
colors.add(Color.GREEN);
pieDataSet.setColors(colors);
PieData pieData =new PieData(pieDataSet);
pieChart.setData(pieData);
pieChart.invalidate();
}
を表示するスクリーンショットあなたは何を得ていますか? – Piyush
そこに円グラフのスクリーンショットがあります –
その白い円の代わりに何を表示しますか? –