This question is locked. New answers and comments are not allowed.
Hello Telerik,
we are using the RadPolarChart with the following code:
<telerik:RadPolarChart x:Name="chart" Grid.Row="1" Grid.Column="0" PaletteName="DefaultLight" Palette="{StaticResource chartPalette}" IsHitTestVisible="False" Width="800"> <telerik:RadPolarChart.Grid> <telerik:PolarChartGrid GridLineVisibility="Both"> <telerik:PolarChartGrid.PolarLineStyle> <Style TargetType="Line"> <Setter Property="StrokeThickness" Value="3"/> <Setter Property="Stroke" Value="{StaticResource AppBarItemPointerOverBackgroundThemeBrush}"/> </Style> </telerik:PolarChartGrid.PolarLineStyle> </telerik:PolarChartGrid> </telerik:RadPolarChart.Grid> <telerik:RadPolarChart.PolarAxis> <telerik:PolarAxis MajorStep="10" Maximum="100" Foreground="Transparent" /> </telerik:RadPolarChart.PolarAxis> <telerik:RadPolarChart.RadialAxis> <telerik:CategoricalRadialAxis> <telerik:CategoricalRadialAxis.LineStyle> <Style TargetType="Ellipse"> <Setter Property="StrokeDashArray" Value="4, 2"/> <Setter Property="Stroke" Value="{StaticResource AppBarItemPointerOverBackgroundThemeBrush}"/> </Style> </telerik:CategoricalRadialAxis.LineStyle> </telerik:CategoricalRadialAxis> </telerik:RadPolarChart.RadialAxis> <telerik:RadPolarChart.Series> <telerik:RadarLineSeries ItemsSource="{Binding Assessments}" LegendTitle="last results"> <telerik:RadarLineSeries.ValueBinding> <telerik:PropertyNameDataPointBinding PropertyName="Result"/> </telerik:RadarLineSeries.ValueBinding> <telerik:RadarLineSeries.CategoryBinding> <telerik:PropertyNameDataPointBinding PropertyName="Name"/> </telerik:RadarLineSeries.CategoryBinding> </telerik:RadarLineSeries> </telerik:RadPolarChart.Series> </telerik:RadPolarChart>​We are experiencing a weird behavior with the positioning of the labels. I attached 2 screenshots to this post, one shows the correct positioning and the other one shows the false.
The false positioning only happens in our ARM build configuration on our ARM tablet. But if we remote debug to the tablet the positioning is correct. Running the app without debugging its wrong.
Hope you understand our point, if you need more information, ask.
Thanks in advance.
Regards,
Florian