web-dev-qa-db-ja.com

MPAndroidChart PieChartラベルテキストを設定する方法は?

次のコードを取得しました:

    Legend legend = mChart.getLegend();
    legend.setLabels(new String[]{"aaaaa", "bbbbb", "ccccc"});

この設定は有効になりませんテキストを設定する他の方法はありますか?

7
Fomove

色付きのカスタムラベルを設定できます。

まず、凡例が有効になっていることを確認します。凡例を有効にしない限り。

legend.setEnabled(true);

Com.github.PhilJay:MPAndroidChart:v3.0.0:-を使用

legend .setCustom(ColorTemplate.VORDIPLOM_COLORS, new String[] { "aaaaa", "bbbbb", "ccccc"});

setCustom(int []色、String []ラベル):カスタム凡例のラベルと色の配列を設定します。色数はラベル数と一致する必要があります。各色は、同じインデックスで描画されたフォーム用です。

5
Chandana Kumara

V3.0.0でメソッドsetCustom(int [] color、String [] labels)が見つかりませんでした。 LegendEntryオブジェクトを渡す必要があるsetCustom(LegendEntry [])のみ。

 List<LegendEntry> entries = new ArrayList<>();

 for (int i = 0; i < titleList.size(); i++) {
     LegendEntry entry = new LegendEntry();
     entry.formColor = colorList.get(i);
     entry.label = titleList.get(i);
     entries.add(entry);
 }

 legend.setCustom(entries);
10
donny.rewq

ラベル名を2番目のパラメーターとしてコンストラクターPieEntry()に渡します。 (バージョン> 3.0.0の場合)

例:

ArrayList<PieEntry> yvalues = new ArrayList<PieEntry>();
yvalues.add(new PieEntry(8f, "JAN"));
yvalues.add(new PieEntry(15f, "FEB"));
yvalues.add(new PieEntry(12f, "MAR"));
yvalues.add(new PieEntry(25f, "APR"));
yvalues.add(new PieEntry(23f, "MAY"));
yvalues.add(new PieEntry(17f, "JUNE"));
PieDataSet dataSet = new PieDataSet(yvalues, "Election Results");
PieData data = new PieData();
data.addDataSet(dataSet);
data.setValueFormatter(new PercentFormatter());
pieChart.setData(data);
5
siva

1)_build.gradle_アプリレベルのコンパイルに依存関係を追加します_'com.github.PhilJay:MPAndroidChart:v2.1.0'_ 2)関数chartDataを作成します

_ private void chartData() {

        ArrayList<Entry> entries = new ArrayList<>();
        entries.add(new Entry(50, 0));
        entries.add(new Entry(60, 1));


        final int[] piecolors = new int[]{
                Color.rgb(183, 28, 28),
                Color.rgb(27, 94, 32)};

        PieDataSet dataset = new PieDataSet(entries, "");

        ArrayList<String> labels = new ArrayList<String>();
        labels.add("Borrowing");
        labels.add("Pending");


        PieData data = new PieData(labels, dataset);
        dataset.setColors(ColorTemplate.createColors(piecolors)); //
        data.setValueTextColor(Color.WHITE);
        pieChart.setDescription("Description");
        pieChart.setData(data);

    }
_

3)chartData()onCreate()を呼び出します

2
vikas singh

vikas singhと他の場所でのその他のヒントのおかげで、MPAndroidChart v3.0.3の円グラフと凡例の両方の色付けを解決した方法は次のとおりです。

 private void visualizeAnalytics(ArrayList<Transaction> transactions) {

        PieChart graph = rootView.findViewById(R.id.graph);

        ArrayList<PieEntry> entries = new  ArrayList<>();

        HashMap<String, Integer> categoryFrequencyMap = new HashMap<>();

        for(Transaction T: transactions) {
            String category = T.getType().name();

           if(categoryFrequencyMap.containsKey(category)){
               categoryFrequencyMap.put(category, categoryFrequencyMap.get(category) + T.getAmount());
           }else {
               categoryFrequencyMap.put(category, T.getAmount());
           }
        }

        ArrayList<String> categories = new ArrayList<>();

        int e = 0;
        for(String category: categoryFrequencyMap.keySet()){
            categories.add(e, category);
            entries.add(new PieEntry(categoryFrequencyMap.get(category), category));
            e++;
        }

        PieDataSet categories_dataSet = new PieDataSet(entries, "Categories");

        categories_dataSet.setSliceSpace(2f);
        categories_dataSet.setValueTextSize(15f);
        //categories_dataSet.setValueTextColor(Color.RED);/* this line not working */
        graph.setEntryLabelColor(Color.RED);

        categories_dataSet.setSelectionShift(10f);
        categories_dataSet.setValueLinePart1OffsetPercentage(80.f);
        categories_dataSet.setValueLinePart1Length(1f);
        categories_dataSet.setValueLinePart2Length(0.9f);
        categories_dataSet.setXValuePosition(PieDataSet.ValuePosition.OUTSIDE_SLICE);

        PieData pieData = new PieData(categories_dataSet);

        graph.setData(pieData);

        Legend legend = graph.getLegend();
        List<LegendEntry> legendEntries = new ArrayList<>();

        RandomColor randomColor = new RandomColor();
        int[] colors = randomColor.randomColor(categories.size());

        for (int i = 0; i < categories.size(); i++) {
            LegendEntry legendEntry = new LegendEntry();
            legendEntry.formColor = colors[i];
            legendEntry.label = categories.get(i);
            legendEntries.add(legendEntry);
        }

        categories_dataSet.setColors(colors);

        legend.setEnabled(false);
        legend.setCustom(legendEntries);

        Description description = new Description();
        description.setText("Analyzing Transaction Vol by Category");
        graph.setDescription(description);

        graph.animateY(5000);

        graph.invalidate(); // refresh
}

ニースのランダムな色については、これから入手しました: https://github.com/lzyzsd/AndroidRandomColor

1
nemesisfixx