This topic explains how to perform the scaling of the XamScatterSurface3D™ control.
The following topics are prerequisites to understanding this topic:
Use the XamScatterSurface3D Scale property to configure the scale of the xamScatterSurface3D control.
By default, the initial value of the Scale
is 0.8.
The following table maps the desired configuration to the property settings that manage it.
The screenshot below demonstrates how the xamScatterSurface3D control looks as a result of the following settings:
Following is the code that implements this example.
In XAML:
<ig:XamScatterSurface3D Name="SurfaceChart3"
ItemsSource="{Binding Path=DataCollection}"
XMemberPath="X" YMemberPath="Y" ZMemberPath="Z"
Scale="0.5"/>
In C#:
…
SurfaceChart.Scale = 0.5;
In Visual Basic:
…
SurfaceChart.Scale = 0.5
The following topics provide additional information related to this topic.