I have huge number of data to cluster in R. But when i try to cluster, all the numbers at the bottom of the dendrogram merges which is very difficult to interpret the values.
With so many values your options are to either draw an enormous picture (as in Michael Dondrop's answer) or to skip the picture and use some textual output.
If you pass an argument to the hclust function it can retain the tree data structure and let you have code-access to it. The tree datastructure is a list of left and right elements, each of which has a height parameter and another set of left and right elements. You have to traverse the list with some kind of loop to get at the subclusters. There also exists a function to retrieve all leaf nodes, so you at least will know their order.
Given a height cutoff threshold you could separate this into a reasonable number of subtrees and maybe draw those separately.
I don't have the code available here, but the principle is straightforward. Ask hclust to return the dendrogram and you can dig through it.
At the integrated R help ?hclust there is an example of getting at the ten largest subtrees like so:
hc <- hclust(dist(USArrests)^2, "cen")
memb <- cutree(hc, k = 10)
You are going to have to play with the plot() options to build a larger plot with smaller legends. For instance, have you tried using the 'cex' option in the plot() call?
Also, to help you, the labels on the figure can be retrieved this way: hc$label[hc$order]
Could you give us the code you are using and the output it creates so that we can visualise what the problem is?