I read about that in the documentation but can't seem to make it work...
here's my wheel if you can help me notice what i'm doing wrong.
<!-- Wheel -->
<Grid x:Name="Wheel" HorizontalAlignment="Left" VerticalAlignment="Top" Visibility="Visible" Width="{Binding ElementName=Canvas,Path=ActualWidth,Converter={StaticResource ScalePropertyValueD},ConverterParameter=W;1720;1920}" Height="{Binding ElementName=Canvas,Path=ActualHeight,Converter={StaticResource ScalePropertyValueD},ConverterParameter=H;250;1080}" RenderTransformOrigin="0.5,0.5" Panel.ZIndex="270">
<coverFlow:FlowControl x:Name="FlowControl"
Opacity="1.0" ImageType="Clear Logo"
HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
CurveAmount="0" CameraZPosition="5.5" VisibleCount="20" Spacing="2"
ItemZPosition="1.0" SelectedItemZPosition="1.3" PageSize="22"
CameraYAngle="0" RenderTransformOrigin=".5,.5"
Rows="2"
Endless="true"
CoverFactory="{Binding CoverFactory}" >
<coverFlow:FlowControl.RenderTransform>
<TransformGroup>
<RotateTransform Angle="0" />
<ScaleTransform ScaleX="1" ScaleY="1" />
<SkewTransform AngleX="0" AngleY="0" />
</TransformGroup>
</coverFlow:FlowControl.RenderTransform>
</coverFlow:FlowControl>
<Grid.RenderTransform>
<TransformGroup>
<SkewTransform AngleX="0" AngleY="0" />
<RotateTransform Angle="0" />
<TranslateTransform X="{Binding ElementName=Canvas,Path=ActualWidth,Converter={StaticResource ScalePropertyValueD},ConverterParameter=X;100;1920}" Y="{Binding ElementName=Canvas,Path=ActualHeight,Converter={StaticResource ScalePropertyValueD},ConverterParameter=Y;710;1080}" />
</TransformGroup>
</Grid.RenderTransform>
</Grid>