Following code doesn't work:
<ig:XamTreemap x:Name="Treemap" Background="White" Margin="0" LayoutType="Squarified" LayoutOrientation="Horizontal">
Background is still white-to-gray gradient. Any suggestions?
Hello,
Try using the DefaultStyle property:
<ig:XamTreemap.DefaultStyle> <Style TargetType="ig:TreemapNode"> <Setter Property="Fill" Value="White"/> </Style></ig:XamTreemap.DefaultStyle>
Regards,
Boyan
Yes, this works. I didn't realize that background of treemap is actually root node. Am I right?