Hi, I have a refreshview with a grid that contains a some labels, a RadPieChart and a CollectionView.
However the existence of the RadPieChart disables the functions of the refreshview on the collectionview. If i replace it with a boxview that has the same view properties set it works fine, but then i'm missing the chart.
It seems like there is some kind of override on the refreshview from the chart. Is there a way to fix this?
<!--<BoxView x:Name="boxtest"
Grid.Row="4"
BackgroundColor="Red"
VerticalOptions="Fill"
IsEnabled="False"
Margin="0, 16">
</BoxView>-->
<telerik:RadPieChart Grid.Row="4"
x:Name="AbsencePieChart"
BackgroundColor="Red"
VerticalOptions="Fill"
Palette="{Binding Path=PieChartDataPoints, Converter={StaticResource PieChartToChartPalette}}"
IsEnabled="False"
Margin="0, 16">
<telerik:RadPieChart.Series>
<telerik:PieSeries ItemsSource="{Binding Path=PieChartDataPoints}"
ValueBinding="Value" />
</telerik:RadPieChart.Series>
</telerik:RadPieChart>