On your mac: System preferences-> General-> Scroll bars-> Choose always.
There is an easy workaround for this problem by using the RadFormDecorator:
<telerik:RadFormDecorator runat="server" DecoratedControls="Scrollbars" />
The other option is to use the following CSS rules:
div[id*="_Frozen"]::-webkit-scrollbar {
height: 16px;
}
div[id*="_Frozen"]::-webkit-scrollbar-thumb:horizontal {
border-width: 1px;
border-style: solid;
}