web-dev-qa-db-fra.com

Comment masquer les légendes et les axes dans MPAndroidChart?

Est-il possible de masquer tous les éléments arrondis de cette image?.

enter image description here

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?

enter image description here

43
Gunaseelan

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 
133
codezjx

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 

  • BAS
  • BOTH_SIDED
  • BOTTOM_INSIDE
  • HAUT
  • TOP_INSIDE

Cela aide si vous essayez de masquer uniquement l’axe latéral particulier au lieu de masquer l’axe entier.

4
Prabs

Suivre le travail pour tout le graphique

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

1
Anil

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);
1
Pooja
chart=(LineChart) findViewById(R.id.Chart);
chart.getLegend().setEnabled(false); // for hiding square on below graph
0
saigopi