How do I create a scatter plot and lines in the same mode?

I know MPAndroidChart allows two line charts to be placed in the same plot, but I need to plot 2 scatter charts and one line chart in the same plot. How can I do that?

+1


source to share


2 answers


The functionality you describe is not available in versions 2 and below.

EDIT v3.0.0 + :



This feature is now available . This can be done using CombinedChart

.

+1


source


This feature is now available. Check out an example of a combo chart.



https://github.com/PhilJay/MPAndroidChart/blob/master/MPChartExample/src/com/xxmassdeveloper/mpchartexample/CombinedChartActivity.java

+1


source







All Articles