Right To Left in .NET MAUI TreeMap

18 Nov 20181 minute to read

SfTreeMap supports changing the flow to the right-to-left direction by setting the FlowDirection to RightToLeft.

Prerequisite: Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the TreeMap control is properly configured in your application. For detailed setup and configuration instructions, refer to the Getting Started guide.

<treemap:SfTreeMap FlowDirection="RightToLeft"/>
SfTreeMap treeMap = new SfTreeMap();
treeMap.FlowDirection = RightToLeft;