Right To Left in .NET MAUI TreeMap (SfTreeMap)

16 Jul 20261 minute to read

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

NOTE

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;