Top "Mpandroidchart" questions

MPAndroidChart is a powerful open-source Android chart view / graph view library.

Plot Multiple Charts in one in MPAndroidChart

I have to plot two different dataSets in a single graph. DataSet-1 String[] xAxisOne = new String[] { "0", "1", "2", "3", "4", "5", "6" }; float[] dataInput = { 1f, 2f, 3…

android android-canvas mpandroidchart
Remove all slice text from Pie Chart (ios-charts/mpandroidchart)

I know the method for removing the x-values but how do I remove the y-values. I basically don't want ANY …

mpandroidchart ios-charts
MPAndroidChart - Change message "No chart data available"

Is there any way to change the message "No chart data available" when the chart is not populated? Edit: Found …

mpandroidchart
How to set String value of xAxis in MPAndroidChart?

I want to make Line Chart Graph, but i have problem to show value string in xAxis, im used Library …

android linechart mpandroidchart
MPAndroidChart bar chart how to change color of each label

This is a bar chart that i build using MPAndroidChart library. Now I have to change the color of each …

android mpandroidchart
MPAndroidChart fill color gradient

Is it possible with MPAndroidChart (or any other Android chart library) to fill the chart under the draw line with …

android charts mpandroidchart
MP Android Chart-How to fix the number of X-Axis values in the Line Chart?

private void plotchart(String s[], float[] f1) { chart.setBackgroundColor(Color.rgb(63, 81, 181)); chart.setDescription(""); // enable touch gestures chart.setTouchEnabled(true); chart.…

java android charts linechart mpandroidchart
Show value when tapped [MPAndroidChart]

I`ve been looking for a way to enable the MPAndroidChart to only display the value(label) of data point …

java android linechart mpandroidchart
MPAndroidChart PieChart how to set label text?

got the following code: Legend legend = mChart.getLegend(); legend.setLabels(new String[]{"aaaaa", "bbbbb", "ccccc"}); This setting does not take …

android mpandroidchart
How to change chart background with MPAndroidChart library?

I'm using the amazing library MPAndroidChart. It works like a charm, except when I'm trying to change the background color …

android charts mpandroidchart