Telerik Forums
UI for .NET MAUI Forum
3 answers
79 views
hello, Is there any possibility to export RadCartesianChart to pdf/png?
Didi
Telerik team
 updated answer on 04 Mar 2026
1 answer
114 views
// Spalten, die ausgeblendet werden sollen
            var zuVersteckendeSpalten = new[] { "AssetObjectId", "Id", "Media", "TheGeom" };

            foreach (var col in dataGrid.Columns)
            {
                if (zuVersteckendeSpalten.Contains(col.Name))
                {
                    col.IsVisible = false;
                }
            }
Didi
Telerik team
 answered on 16 Feb 2026
0 answers
107 views

We're getting these warnings during runtime on iOS (Telerik.UI.for.Maui 13.0.0):

Microsoft.Maui.Controls.LinearGradientBrush is already a child of Telerik.Maui.Controls.RadEffectsView. Remove Microsoft.Maui.Controls.LinearGradientBrush from Telerik.Maui.Controls.RadEffectsView before adding to Telerik.Maui.Controls.RadEffectsView.

Microsoft.Maui.Controls.SolidColorBrush is already a child of Telerik.Maui.Controls.RadBorder. Remove Microsoft.Maui.Controls.SolidColorBrush from Telerik.Maui.Controls.RadBorder before adding to Telerik.Maui.Controls.RadBorder.

 

App seems to run fine, but our logger (Sentry) gets flooded with warnings. Any way to resolve?

Neil N
Top achievements
Rank 2
Iron
Iron
Veteran
 asked on 14 Feb 2026
1 answer
150 views

Expanding an element chain in the TreeView is quite cumbersome when using different descriptors with different templates, as the provided method Expand(IEnumerable itemPath) requires complex preparation and, depending on the context, different preparation mechanisms.

It would be desirable if the already existing method Expand(object dataItem) from the TreeViewAdapter could be made accessible directly through the TreeView.

As an additional bonus, it would be beneficial if the chain could be determined automatically based on the passed element.


Didi
Telerik team
 answered on 17 Dec 2025
1 answer
157 views

Description:

We are experiencing an issue with the RadRichTextEditor on iPad when using the built-in InputAccessoryView buttons that appear above the virtual keyboard (Bold, Italic, Underline)

 

Observed Behavior:

  •  The buttons in the InputAccessoryView do not trigger formatting commands in the editor.

  •  The state of these buttons is not synchronized with the main RadRichTextEditor toolbar, pressing toolbar items in the toolbar does not update the corresponding buttons in the InputAccessoryView, and vice versa.

  •  This occurs consistently on iPad.

 

Expected Behavior:

  •  InputAccessoryView buttons should perform the corresponding formatting actions.

  •  Their state should be synchronized with the main toolbar buttons of the editor.

 

Environment
Maui - 9.0.120

Xcode 16.4

IPad 10th generation (simulator and real device)

 

See attached file

 

Didi
Telerik team
 answered on 11 Dec 2025
1 answer
113 views
Hi, is it possible to modify a linear gauge, so that there is text inside the various ranges? as per the example
Denis
Telerik team
 answered on 08 Dec 2025
1 answer
170 views

Hi,

I have an tap gesture issue with some controls on my samsung device (Galaxy A17 5G), especially CollectionView, Toolbar and probably others controls as well.

For example, when I select one or multiple items in the CollectionView, the tap gesture is not recognized properly and "works" randomly or not at all.

I tried with the Telerik.NET MAUI Controls app on Google Play Store and reproduce the issue on it (collectionview and toolbar).

When I use the sample app (or my app) with Vysor (screen mirroring), it works fine when I click on the items (using mouse) but it doesn't work when I tap on the item directly on the device.

It works fine on android emulator and on my other devices (Google Pixel 6a, 9a) 

Environment (my app):

  • Telerik UI for .NET Maui: 12.0.0
  • NET Maui: 9.0.110

Device :

  • Product name: Samsung Galaxy A15 5G (SM-A176B/DS)
  • Android version: 16
  • One UI version: 8
  • Knox version: 3.12 (api lvl 39)

Has anyone else encountered this issue?

Thanks,

Franck

Didi
Telerik team
 answered on 05 Dec 2025
1 answer
108 views

I have CollectionView sometimes I want it to be a flat format without grouping and other times I want it grouped.  Basically depending on how the input data.  I have figured out ways to have the group display nothing, but there is still a space for where the group header would be.

How could I go about this type of setup.  

Basically something like:

if string.IsNullOrEmpty(GroupName)
   //Don't group
else
    //group

Didi
Telerik team
 answered on 04 Dec 2025
1 answer
121 views

Hello,

We are having some issues figuring out why our custom appointments are missing icons(fontimage) whose visibility is controlled by a boolean.

First off, notice the book icon is only showing on the 2nd appointment, when it should be active on the first 3 appointments.

Then after going back and forth a few days without change or updating my list or any items on it we get the following:

The icon is now active on the 1st appointment for the same day, but not active for the 2nd anymore, and still not active for appointment 3.

We have checked the customAppointment and the boolean does get its boolean set to true for the relevant appointments. We do have the Copy and CopyFrom methods covering the boolean.


public bool showHomeworkIcon { get; set; }

public override IAppointment Copy()
{
    var task = new kmdAppointment();
    task.CopyFrom(this);
    return task;
}

public override void CopyFrom(IAppointment other)
{
    var task = other as kmdAppointment;
    if (task != null)
    {
        this.Rooms = task.Rooms;
        this.attachments = task.attachments;
        this.Teachers = task.Teachers;
        this.Description = task.Description;
        this.SubjectCourses = task.SubjectCourses;
        this.IsCancelled = task.IsCancelled;
        this.AppointmentColor = task.AppointmentColor;
        this.AppointmentSecondaryColor = task.AppointmentSecondaryColor;
        this.homeworkList = task.homeworkList;
        this.LessonAssignment = task.LessonAssignment;


        this.hasHomework = task.hasHomework;
        this.startEndString = task.startEndString;
        this.showHomeworkIcon = task.showHomeworkIcon;
        this.showLessonAssignmentIcon = task.showLessonAssignmentIcon;
    }
    base.CopyFrom(other);
}


Our day template uses a radborder with a grid

 <telerik:RadBorder CornerRadius="4"
                    Margin="1"
                    IsClippedToBounds="True"
                    BorderBrush="{Binding Occurrence.Appointment.AppointmentSecondaryColor}"
                    BorderThickness="4,0,0,0"
                    BackgroundColor="{Binding Occurrence.Appointment.AppointmentColor}">
     <Grid RowSpacing="0">
         <Grid.RowDefinitions>
             <RowDefinition Height="auto"></RowDefinition>
             <RowDefinition Height="auto"></RowDefinition>
             <RowDefinition Height="auto"></RowDefinition>
             <RowDefinition Height="*"></RowDefinition>
             <RowDefinition Height="auto"></RowDefinition>
         </Grid.RowDefinitions>
         <Grid.ColumnDefinitions>
             <ColumnDefinition Width="*"></ColumnDefinition>
             <ColumnDefinition Width="Auto"></ColumnDefinition>
             <ColumnDefinition Width="Auto"></ColumnDefinition>
         </Grid.ColumnDefinitions>

<label Grid.Row="0"
Grid.ColumnSpan="3"/> //repeat labels for 1,3 2,3 and 4,3. 3 is * to force the rows below to be near the end.


     <Image  Grid.Row="4"
         Grid.Column="1"
     </Image>

     <Image Grid.Row="4"
                           Grid.Column="2"
                           Margin="4, 0, 4, 4"
                           IsVisible="{Binding Occurrence.Appointment.showHomeworkIcon}">
                        <Image.Source>
                            <FontImageSource FontFamily="Material"
                                             Glyph="{x:Static materialDesign:MaterialDesignIcons.BookOpenBlankVariantOutline}"
                                             Color="{StaticResource BrandPrimary}"
                                             Size="16" />
                        </Image.Source>
      </Image>
  </Grid>
</telerik:RadBorder>

My guess is that the issue lies with the reusing of cells in whatever collectionview you build the appointments on, but I'm not sure.

dotnet sdk is 10.0.100-rc.2.25502.107 & 9.0.306 targeting dotnet 9, workload list says  ios 26.0.10970-net10-rc.2, android 36.0.0-rc.2.332

using Telerik.UI.for.Maui 11.1.0

inLogic
Top achievements
Rank 1
Iron
Iron
 answered on 01 Dec 2025
0 answers
126 views

We can not repro it for now. Stack trace from our crash reports:

Message: AggregateException_ctor_DefaultMessage (TaskCanceledException_ctor_DefaultMessage) (TaskCanceledException_ctor_DefaultMessage) (TaskCanceledException_ctor_DefaultMessage) (TaskCanceledException_ctor_DefaultMessage) (TaskCanceledException_ctor_DefaultMessage) (TaskCanceledException_ctor_DefaultMessage)

System.ThrowHelper.ThrowAggregateException(List`1 exceptions)
System.Threading.Tasks.Task.WaitAllCore(ReadOnlySpan`1 tasks, Int32 millisecondsTimeout, CancellationToken cancellationToken)
System.Threading.Tasks.Task.WaitAll(Task[] tasks)
Telerik.Maui.Data.ParallelDataEngine.GenerateBottomLevelsFromSourceParallel(ParallelState state)
Telerik.Maui.Data.ParallelDataEngine+<>c__DisplayClass117_0.<BeginParallelProcessing>b__0()
System.Threading.Tasks.Task`1[[Telerik.Maui.Data.ParallelDataEngine+GroupingResults, Telerik.Maui.Core, Version=11.1.0.0, Culture=neutral, PublicKeyToken=5803cfa389c90ce7]].InnerInvoke()
System.Threading.Tasks.Task+<>c.<.cctor>b__292_0(Object obj)
System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot, Thread threadPoolThread)
Message: TaskCanceledException_ctor_DefaultMessage
none
Message: TaskCanceledException_ctor_DefaultMessage
none
Message: TaskCanceledException_ctor_DefaultMessage
none
Message: TaskCanceledException_ctor_DefaultMessage
none
Message: TaskCanceledException_ctor_DefaultMessage
none
Message: TaskCanceledException_ctor_DefaultMessage
none

Andrey
Top achievements
Rank 1
 updated question on 27 Nov 2025
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?