How to Enable HtmlPlaceholder ScrollBars.

By default the RadHtmlPlaceholder control clips its content if there is not enough space to render it. The clipping occurs in cases when the size required to render accurately the content of the control is larger than the size of the control itself.

To avoid this, you can do the following in the code-behind of your application:

(myHtmlPlaceholder.HtmlPresenter.Children[0] as HtmlElement).SetStyleAttribute("overflow", "auto");  
In this article