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

![b07c54cec5279bf3828f2e4c69f2d46](https://user-images.githubusercontent.com/13583951/178881868-370be32d-eaec-4395-8d95-84a0808ebb95.png)

Hello, I have an issue with CombinedChart view, I'm using bar and line chart both together. Everything is working rest one thing, when I use a group bar chart it...

The test code: mChart = (HorizontalBarChart) findViewById(R.id.chart); mChart.getDescription().setEnabled(false); mChart.setMaxVisibleValueCount(30); mChart.setPinchZoom(true); mChart.setDoubleTapToZoomEnabled(false); mChart.setDrawGridBackground(false); mChart.setHighlightPerTapEnabled(false); mChart.getAxisLeft().setEnabled(false); mChart.getAxisRight().setEnabled(false); mChart.setFitBars(true); mChart.animateY(1000); final ArrayList values = new ArrayList(); values.add(new BarEntry(0, 1, "1")); values.add(new BarEntry(1, 4,...

目前在开发的时候堆积图和饼状图点击以后想弹窗提示数据,但是获取不到当前点击是哪一块,不懂什么解决

**Summary** **Expected Behavior** **Possible Solution** **Device (please complete the following information):** - Device: [e.g. Google Pixel] - Android Version [e.g. 7.0] - Library Version (e.g. 3.1.0-alpha) **Additional Context** ADD A...

I have a question about coloring the charts with gradients. I have not found this particular issue I am facing in the documentation (I hope I did not overlook it)...

enhancement

Does this library has built-in support to plot graph for days, weeks, months and years break down of input data. Can we create graphs with daily, weekly, monthly and yearly...

After LineChart sets the LineDataSet.Mode.CUBIC_BEZIER property, the data does not match. The first data clearly starts from 20, the line is below 20, and there is no problem with LINEAR...

LineDataSet.Mode.LINEAR How can i remove the jaggedness between the lines

**Summary** Receiving the following NegativeArraySizeExcpetion: E AndroidRuntime: java.lang.NegativeArraySizeException: -4 E AndroidRuntime: at com.github.mikephil.charting.utils.Transformer.generateTransformedValuesLine(Transformer.java:178) E AndroidRuntime: at com.github.mikephil.charting.renderer.LineChartRenderer.drawValues(LineChartRenderer.java:549) E AndroidRuntime: at com.github.mikephil.charting.charts.BarLineChartBase.onDraw(BarLineChartBase.java:278) This occurs because of the following lines in LineChartRenderer:...