The scrollbar on UWP is blocking the content (including the options button which is also not clickable because of it
Workaround: Add a style for the column header and apply margin to the Options button:
<ContentPage.Resources>
<ResourceDictionary>
<telerikGrid:DataGridColumnHeaderStyle x:Key="headerstyle"
TextColor="Black" OptionsButtonMargin="0,0,20,0"
OptionsButtonFontSize="30"
BorderColor="Black"
BorderThickness="2"/>
</ResourceDictionary>
</ContentPage.Resources>
<Grid>
<telerikGrid:RadDataGrid ItemsSource="{Binding Items}" BackgroundColor="Red" AutoGenerateColumns="false">
<telerikGrid:RadDataGrid.Columns>
<telerikGrid:DataGridTextColumn PropertyName="Country" HeaderStyle="{StaticResource headerstyle}"/>
<telerikGrid:DataGridTextColumn PropertyName="Capital" HeaderStyle="{StaticResource headerstyle}"/>
</telerikGrid:RadDataGrid.Columns>
</telerikGrid:RadDataGrid>
</Grid>
Hello,
I'd been testing the trial version of the Telerik chart control for Xamarin in an Android app. Because it was working well, I'd purchased a license yesterday. And, I replaced the NuGet trial package with the license package. So far, so good.
However, now, when I try to build the project, it fails. (I've tried building both the Release and Debug version.)
The errors I see are below:
Severity Code Description Project File Line Suppression State
Error failed linking references. Ble.Client.Android
Error resource style/MainTheme.Base (aka com.companyname.ble.client:style/MainTheme.Base) not found. Ble.Client.Android
ErrorNU1301 Failed to retrieve information about 'Xamarin.AndroidX.AppCompat' from remote source 'https://packagesource/FindPackagesById()?id='Xamarin.AndroidX.AppCompat'&semVerLevel=2.0.0'. Ble.Client.Android D:\2023_devwork\BLE_Xamarin\XamarinBleCodeBehind-main\XamarinBleCodeBehind-main\Ble.Client\Ble.Client.Android\Ble.Client.Android.csproj 1
Any thoughts as to what might have broken, and, what I need to do in order to resolve the issue? (In case it helps, I'm including a screen capture of the Visual Studio 2022 output window.)
Thanks!
--Donn Morse