MPAndroidChart remove legend
The values you are talking about belong to the Legend.
To disable them (prevent them from being displayed), call
Legend l = chart.getLegend();
l.setEnabled(false);
you can set like this
linechart.setData();
...
linechert.getLegend().setEnable(false);
gone Legend should be at the back of setData()