Skip to content Skip to sidebar Skip to footer

Mpandroidchart Scatter Chart Data Point Markers And Connecting The Dots

I am using MPAndroidChart. In an application for scatter data I want to have the data points connected by a line and disable the automatic labels that show up when I plot just a fe

Solution 1:

Yes, you can use a CombinedChart to do that.

Use ScatterData to draw your shapes, and LineData to connect them with lines.

You can find more on that in the example project on Github.

You can disable drawing the value labels on any data object by calling data.setDrawValues(false).

Post a Comment for "Mpandroidchart Scatter Chart Data Point Markers And Connecting The Dots"