Hi PhilJay i have this problem, when i try to hide the line setting the color of the same to transparent
originalDataSet.setColor(Color.TRANSPARENT);
the label color too disappear, and i don't want it, i want to hide only the drawn line, thank you in advance.
Here i leave the screenshots.


my solved and i hope you:
dataSet.setDrawCircleHole(true);
dataSet.setColor(getColor(R.color.transparent));
dataSet.setCircleColor(colorRes);
For anyone else looking for a solution to this, you can use the dashed line feature with line length set to 0 to draw only the dots: dataSet.enableDashedLine(0, 1, 0);
https://stackoverflow.com/questions/61002382/how-to-not-draw-negative-value-on-a-linechart-mpandroidchart
Can you help me on this post, please
Most helpful comment
For anyone else looking for a solution to this, you can use the dashed line feature with line length set to 0 to draw only the dots:
dataSet.enableDashedLine(0, 1, 0);