MPAndroidChart icon indicating copy to clipboard operation
MPAndroidChart copied to clipboard

A powerful 🚀 Android chart view / graph view library, supporting line- bar- pie- radar- bubble- and candlestick charts as well as scaling, panning and animations.

Results 328 MPAndroidChart issues
Sort by recently updated
recently updated
newest added

got ANR using linechart version: v3.1.0-alpha trace: 1 com.github.mikephil.charting.renderer.AxisRenderer.computeAxisValues(AxisRenderer.java:212) 2 com.github.mikephil.charting.renderer.XAxisRenderer.computeAxisValues(XAxisRenderer.java:72) 3 com.github.mikephil.charting.renderer.XAxisRenderer.computeAxis(XAxisRenderer.java:67) 4 com.github.mikephil.charting.charts.BarLineChartBase.onDraw(BarLineChartBase.java:209) 5 android.view.View.draw(View.java:16195) 6 android.view.View.draw(View.java:16107) 7 android.view.ViewGroup.drawChild(ViewGroup.java:3610) 8 android.view.ViewGroup.dispatchDraw(ViewGroup.java:3400) 9 android.view.View.draw(View.java:16105) 10 android.view.ViewGroup.drawChild(ViewGroup.java:3610) 11 android.view.ViewGroup.dispatchDraw(ViewGroup.java:3400) 12 ...

How can i select a group in Bar chart . I need to select a group of bar chart ??? ![image](https://user-images.githubusercontent.com/10687584/167660899-1a8fac4d-49bc-41e0-a783-956674dcb12a.png)

I've made custom chart view `public class TargetZoneCombinedChart extends CombinedChart { protected Paint mYAxisSafeZonePaint; private List mTargetZones; public TargetZoneCombinedChart(Context context) { super(context); } public TargetZoneCombinedChart(Context context, AttributeSet attrs) { super(context,...

How to fix the bug that the chart automatically starts scrolling after reaching the max zoom in provided with setVisibleXRangeMinimum(); ? I only want to scroll horizontal when the user...

# *Below is screenshot ![chart_issue](https://user-images.githubusercontent.com/41606860/43117831-86955da4-8f2c-11e8-875f-f312215631e1.png) * I want to set x axis labels exactly below grouped bars as well as remove un-necessary gap of y-axis and first grouped bars. **What...

![Screenshot (283)](https://user-images.githubusercontent.com/58039469/166869123-ddca6460-b94c-46d5-b98d-04d788ae76c2.png) How to achieve this kind of behavior in the graph

Hello, I have a "realtime" chart where I add a new sample every second. If I now zoom into this chart and a new datapoint is added, the x position...

Hi everyone! I am working with PieChart. I want to make the highlight has slice space when touching on pie. like the example image on home page ![image](https://user-images.githubusercontent.com/14673327/69843421-fc468e00-1299-11ea-9341-71cdf74cf24f.png) The SliceSpace...

This PR allow multiline labels on the xAxis using '\n' Example : XAxis xAxis = mChart.getXAxis(); xAxis.setMultiLineLabel(true); xAxis.setValueFormatter(new IAxisValueFormatter() { @Override public String getFormattedValue(float value, AxisBase axis) { return value+"\n"+"%";...

I have two groups (BarDataSet) Two y axis ```jsx set1.axisDependency = YAxis.AxisDependency.LEFT set2.axisDependency = YAxis.AxisDependency.RIGHT ``` And when you click on the second one sometimes it's not highlighted Often the...