MPAndroidChart
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.
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 ??? 
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  * 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...
 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  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...