Is it possible to disable the horizontal scrolling on the RadTreeView?
am using the tree control to create Gantt View with a table and chart. I want to handle horizontal scrolling myself so that I can scroll the two side seperately. I have created controls for the row in the view that are split and have their own ScrollViewers that I control programatically but the treeview is adding it's own horizontal scrollbar when the content exceeds the width of the page.
I have tried setting the static properties ScrollViewer properties but this throws an exception
ScrollViewer.HorizontalScrollBarVisibility
="Disabled"
ScrollViewer.VerticalScrollBarVisibility="Disabled"
Is there another way to do it?
Mike