Yes, there is a pretty simple way to do this. All you need is an instance of your chart and ViewPortHandler.
ViewPortHandler contains information about the current borders of the chart and the drawing area.
ViewPortHandler handler = mChart.getViewPortHandler();
PointD topLeft = mChart.getValuesByTouchPoint(handler.contentLeft(), handler.contentTop(), YAxis.AxisDependency.LEFT);
PointD bottomRight = mChart.getValuesByTouchPoint(handler.contentRight(), handler.contentBottom(), YAxis.AxisDependency.LEFT);
topLeft x y, bottomRight x y.
AxisDependency , ( , , YAxis).