この写真からすべての丸いアイテムを隠す可能性はありますか。
私は次のコードを使用しました、
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);
}
更新
この画像から丸い部分を非表示にする方法は?
はい、次のコードを使用するだけで可能です。
mChart.setDescription(""); // Hide the description
mChart.getAxisLeft().setDrawLabels(false);
mChart.getAxisRight().setDrawLabels(false);
mChart.getXAxis().setDrawLabels(false);
mChart.getLegend().setEnabled(false); // Hide the legend
mChart.getXAxis().setDrawLabels(false);
はX軸全体を非表示にします(この質問に必要です)。
X軸を配置するには、次のコードが機能します。
XAxis xAxis = mChart.getXAxis();
xAxis.setPosition(XAxis.XAxisPosition.BOTTOM);
位置を設定できます
これは、軸全体を非表示にするのではなく、特定の側軸のみを非表示にしようとしている場合に役立ちます。
すべてのチャートの次のコード作業
Legend l = mchart.getLegend(); l.setEnabled(false);
。
mChart.SetDescription()
はもはや文字列を受け入れないようです。
メソッドは、次のような説明クラスのインスタンスを受け入れるようになりました:mChart.setDescription(Description description)
チャートの説明を変更または削除するには、次のようにします。
Description description = new Description();
description.setText("");
mChart.setDescription(description);
以下のコードはPieChartで機能します。チャートに対して同じメソッドを取得してください。
Legend l = mChart.getLegend();
l.setPosition(LegendPosition.NONE);
chart=(LineChart) findViewById(R.id.Chart);
chart.getLegend().setEnabled(false); // for hiding square on below graph