Est-il possible de masquer tous les éléments arrondis de cette image?.
J'ai utilisé le code suivant,
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);
}
Mettre à jour
Comment cacher une partie arrondie de cette image?
Oui, c'est possible, en utilisant simplement le code suivant:
mChart.setDescription(""); // Hide the description
mChart.getAxisLeft().setDrawLabels(false);
mChart.getAxisRight().setDrawLabels(false);
mChart.getXAxis().setDrawLabels(false);
mChart.getLegend().setEnabled(false); // Hide the legend
Selon cette réponse
mChart.getXAxis().setDrawLabels(false);
cachera l’axe X entier (comme requis pour cette question).
Pour le positionnement de l’axe X, le code suivant fonctionne.
XAxis xAxis = mChart.getXAxis();
xAxis.setPosition(XAxis.XAxisPosition.BOTTOM);
La position peut être réglée sur
Cela aide si vous essayez de masquer uniquement l’axe latéral particulier au lieu de masquer l’axe entier.
Suivre le travail pour tout le graphique
Legend l = mchart.getLegend();
l.setEnabled(false);
.
Le code ci-dessous fonctionne pour PieChart. Essayez d’obtenir la même méthode pour votre graphique.
Legend l = mChart.getLegend();
l.setPosition(LegendPosition.NONE);
chart=(LineChart) findViewById(R.id.Chart);
chart.getLegend().setEnabled(false); // for hiding square on below graph