Was this feature ever implemented? It's kind of odd to not being able to scroll horizontally since it's in the nature of a tree view that the programmer often doesn't know upfront how many levels there will be, thus how much horizontal space it will consume.
Thank you, but when I click the feedback link I get an "access denied" error. Besides that, is there any workaround you could suggest, like wrapping the TreeView into a ScrollViewer?
<ScrollView Orientation="Horizontal">
<StackLayout>
<syncfusion:SfTreeView x:Name="treeView"
ChildPropertyName="SubFiles"
ItemTemplateContextType="Node"
AutoExpandMode="AllNodesExpanded"
ItemsSource="{Binding ImageNodeInfo}"
WidthRequest="1000">
<syncfusion:SfTreeView.ItemTemplate>
<DataTemplate>
<Grid x:Name="grid" RowSpacing="0" >
...
</Grid>
</DataTemplate>
</syncfusion:SfTreeView.ItemTemplate>
</syncfusion:SfTreeView>
</StackLayout>
</ScrollView> |
I still don't have access even though I am logged in.
Thanks for the workaround, it's not really a nice solution but it does the job for now. I still would like to vote for that feature since I never encountered a TreeView before that does not allow horizontal scrolling.