One more solution would be to change the order of the data with the USA being first. You might find the angle of the pie layout to be more readable.
var data_values = [48, 1, 1, 1, 1, 1, 1, 4];
var titles = ["USA","Pakistan", "Israel", "Netherlands", "Italy", "Uruguay", "United Kingdom", "Austria", "China"]
http://jsfiddle.net/rocky1616/oLzsrd4o/
Musically_ut's solution would work nicely here as well. You can even take the angle down a bit if that worked in your design.
var getAngle = function (d) {
return (180 / Math.PI * (d.startAngle + d.endAngle) / 2 + 45);
};
http://jsfiddle.net/2uT7F/26/
You would need to create a if else block to take care of the USA item but this is a start if it helps.