I am using a horizontally sliced TreeMap. Is it possible to control the VERTICAL distance (Y-Direction)? I understand the horizontal distance is determined by the values (X-Direction).
Ideally, the space would be equidistant vertically with all 3 groups having the same vertical distance. Similar to a Grid with 3 RowDefinitions where Height="*"
Current XAML:
StaticResource IcicleStyle:
A screenshot of the current layout is attached. If you look at the last section labelled "S", Ideally, (S.Height === %G1.Height). Even if I remove the third level of data {1,2,3,4}, the result is the same.
Any help is appreciated.
Thanks,
Jacob
Ideally, the space would be equidistant vertically with all 3 groups having the same vertical distance. Similar to a Grid with 3 RowDefinitions where Height="*"
Current XAML:
01.<telerik:RadTreeMap x:Name="TreeMap" Grid.Row="0" Grid.Column="2"02. ClipToBounds="True" >03. 04. <telerik:RadTreeMap.LayoutStrategy>05. <telerik:SliceDiceStrategy Orientation="Horizontal" />06. </telerik:RadTreeMap.LayoutStrategy>07. 08. <telerik:RadTreeMap.TypeDefinitions>09. <telerik:TypeDefinition TargetTypeName="ModelInfo"10. ValuePath="Value" ChildrenPath="Children" LabelPath="Name"11. ItemStyle="{StaticResource IcicleStyle}" />12. 13. <telerik:TypeDefinition TargetTypeName="GroupInfo"14. ValuePath="Value" ChildrenPath="Children" LabelPath="Name"15. ItemStyle="{StaticResource IcicleStyle}" />16. 17. <telerik:TypeDefinition TargetTypeName="EventInfo"18. ValuePath="Value" LabelPath="Name"19. ItemStyle="{StaticResource IcicleStyle}" />20. 21. </telerik:RadTreeMap.TypeDefinitions>22. 23.</telerik:RadTreeMap>StaticResource IcicleStyle:
1.<Style x:Key="IcicleStyle" TargetType="telerik:RadTreeMapItem" >2. <Setter Property="Control.Background" Value="White" />3. <Setter Property="MaxHeight" Value="50" />4. <Setter Property="FontFamily" Value="Segoe UI" />5. <Setter Property="FontWeight" Value="SemiBold" />6. <Setter Property="Margin" Value="-1" />7. <Setter Property="Padding" Value="0" />8.</Style>A screenshot of the current layout is attached. If you look at the last section labelled "S", Ideally, (S.Height === %G1.Height). Even if I remove the third level of data {1,2,3,4}, the result is the same.
Any help is appreciated.
Thanks,
Jacob