web-dev-qa-db-ja.com

MPAndroidChartで凡例と軸を非表示にする方法は?

この写真からすべての丸いアイテムを隠す可能性はありますか。

enter image description here

私は次のコードを使用しました、

public void setDataList(List<HorizontalBarChartData> dataList, Resources resources) {

    ArrayList<String> categories = new ArrayList<String>();
    ArrayList<BarEntry> values = new ArrayList<BarEntry>();
    ArrayList<BarDataSet> dataSets = new ArrayList<BarDataSet>();
    BarDataSet set1;
    for (int i = 0; i < dataList.size(); i++) {
        categories.add(dataList.get(i).getName());
        values.add(new BarEntry(dataList.get(i).getValue(), i));
    }

    /*set1 = new BarDataSet(values, "Income, Expense, Disposable Income");*/
    set1 = new BarDataSet(values, "Category 1, Category 2, Category 3");
    set1.setBarSpacePercent(35f);
    set1.setColors(new int[]{resources.getColor(R.color.cyan_blue), resources.getColor(R.color.vermilion_tint), resources.getColor(R.color.sea_green)});
    dataSets.add(set1);

    BarData data = new BarData(categories, dataSets);
    data.setValueTextSize(10f);

    horizontalBarChart.setData(data);
}

更新

この画像から丸い部分を非表示にする方法は?

enter image description here

48
Gunaseelan

はい、次のコードを使用するだけで可能です。

mChart.setDescription("");    // Hide the description
mChart.getAxisLeft().setDrawLabels(false);
mChart.getAxisRight().setDrawLabels(false);
mChart.getXAxis().setDrawLabels(false);

mChart.getLegend().setEnabled(false);   // Hide the legend 
145
codezjx

この回答

mChart.getXAxis().setDrawLabels(false);はX軸全体を非表示にします(この質問に必要です)。

X軸を配置するには、次のコードが機能します。

    XAxis xAxis = mChart.getXAxis();
    xAxis.setPosition(XAxis.XAxisPosition.BOTTOM);

位置を設定できます

  • BOTH_SIDED
  • BOTTOM_INSIDE
  • TOP_INSIDE

これは、軸全体を非表示にするのではなく、特定の側軸のみを非表示にしようとしている場合に役立ちます。

5
Prabs

すべてのチャートの次のコード作業

Legend l = mchart.getLegend(); l.setEnabled(false);

2
Anil

mChart.SetDescription()はもはや文字列を受け入れないようです。

メソッドは、次のような説明クラスのインスタンスを受け入れるようになりました:mChart.setDescription(Description description)

チャートの説明を変更または削除するには、次のようにします。

Description description = new Description();
description.setText("");
mChart.setDescription(description);
2
kite_n_code

以下のコードはPieChartで機能します。チャートに対して同じメソッドを取得してください。

Legend l = mChart.getLegend();
l.setPosition(LegendPosition.NONE);
1
Pooja
chart=(LineChart) findViewById(R.id.Chart);
chart.getLegend().setEnabled(false); // for hiding square on below graph
0
saigopi