Expand Direction
The ExpandDirection property gets or sets the direction in which the content would expand. This property is an enumeration which exposes four values: Down, Left, Right, Up.
Example 1: Setting the ExpandDirection property
<Grid>
<telerik:RadExpander Width="200" Height="200"
ExpandDirection="Down" Background="Bisque"
Header="ExpandDirection Down">
<StackPanel Orientation="Vertical">
<Ellipse Width="99"
Height="99"
Margin="5"
Fill="Blue" />
</StackPanel>
</telerik:RadExpander>
</Grid>