У меня есть линейная диаграмма с несколькими строками, и я пытаюсь скрыть выбранную линию, используя легкие кликабельные символы Но я хочу знать, что легенды кликабельны? и как выбранная легенда скрывает связанную строку.
linechartCall = view.findViewById(R.id.lineChartCall);
linechartCall.getDescription().setEnabled(false);
linechartCall.setBackgroundColor(Color.WHITE);
linechartCall.setDrawGridBackground(false);
linechartCall.setDoubleTapToZoomEnabled(true);
linechartCall.setTouchEnabled(true);
linechartCall.getLegend().setEnabled(true);
Legend l = linechartCall.getLegend();
l.setVerticalAlignment(Legend.LegendVerticalAlignment.BOTTOM);
l.setHorizontalAlignment(Legend.LegendHorizontalAlignment.RIGHT);
l.setOrientation(Legend.LegendOrientation.HORIZONTAL);
l.setWordWrapEnabled(true);
l.setXEntrySpace(8f);
l.setYEntrySpace(0f);
YAxis rightAxis = linechartCall.getAxisRight();
rightAxis.setDrawGridLines(false);
rightAxis.setDrawLabels(false);
rightAxis.setAxisMinimum(0f); // this replaces setStartAtZero(true)
YAxis leftAxis = linechartCall.getAxisLeft();
leftAxis.setDrawGridLines(false);
leftAxis.setDrawLabels(false);
leftAxis.setAxisMinimum(0f); // this replaces setStartAtZero(true