In R, I've created a plot with a separate axis on the left to specify horizontal labels for the y-axis of the plot.  However, the labels are truncated.  That is, the complete name is not shown, only the last 9 characters of the name is shown.  I use the R axis command to create the axis and the labels = names parameter to specify the names.  names is a vector of character label names which vary in length.  
plot(x = c(0,mx),y=c(1,n),yaxt = 'n', xlab = "Dollars - 100,000's", cex.axis = .65, typ = 'n', ylab = '', cex.lab = .8)
axis(side = 2, at = seq(1,n), labels = names, las = 2, cex.axis = .65)
Here's what the plot looks like: Plot with truncated names
 
    