Declined
Last Updated: 31 Jul 2026 08:20 by ADMIN
If the RadSpreadsheet is declared as a child content in the RadBusyIndicator, there isn't any tab selected as active in the SheetSelector.

Workaround: Declare the busy indicator after the RadSpreadsheet not as its child.

For example, instead of:

<telerik:RadBusyIndicator>
    <telerik:RadSpreadsheet x:Name="radSpreadsheet" />
</telerik:RadBusyIndicator>

Do:

<Grid>
    <telerik:RadSpreadsheet x:Name="radSpreadsheet" />
    <telerik:RadBusyIndicator />
</Grid>
Declined
Last Updated: 30 Jul 2026 11:59 by ADMIN
ADMIN
Created by: Kiril Vandov
Comments: 3
Category: RibbonView
Type: Bug Report
3
RibbonWindow icon appears clipped when the DPI  is set larger than 100%. Also, the icon separator is offset.
Declined
Last Updated: 30 Jul 2026 11:58 by ADMIN
Declined
Last Updated: 30 Jul 2026 11:57 by ADMIN
Workaround:
The issue is caused by the MajorTickInterval property, so one way to go is to remove this setting and use the LabelInterval instead. This will plot more ticks than before, but should eliminate the label clip. If the number of ticks bothers you, you can set the MajorTickLength property of the axis to 0 (so that the ticks are not visible) and use a LabelTemplate in which you will include a label and a tick. 

Another, simpler, work-around is to set a right margin of the chart and set the ClipToBounds property of the chart to false.
Declined
Last Updated: 30 Jul 2026 11:56 by ADMIN
Cannot properly scroll when using StackPanel as ItemsPanel.
Declined
Last Updated: 30 Jul 2026 11:55 by ADMIN
ADMIN
Created by: Evgenia
Comments: 1
Category:
Type: Bug Report
13
When you make the window very small in height and then revert it back to normal size the Pie connectors are gone.
Declined
Last Updated: 30 Jul 2026 11:52 by ADMIN
GoToPage() method is not working correctly in some cases when called in DocumentChanged event handler. The known cases are described below:

   1. When RadPdfViewer and the document are loaded initially and document is set through the RadPdfViewer.Document property.
Workaround: DocumentSource property could be set (in XAML or in code-behind) instead of the Document property. If the Document property is used, this should be done after RadPdfViewer is loaded.

    2. When the ScaleMode is changed in DocumentChanged event handler and then GoToPage() method is called in the same event handler.
Declined
Last Updated: 29 Jul 2026 13:28 by ADMIN
When inserting text (document fragment) next to a correctly spelled word they get both underlined as incorrect.
Declined
Last Updated: 29 Jul 2026 12:08 by ADMIN
Currently when the text contains consecutive non-space symbols like "~!@#$%^&*()_+=-`[]{};:'"/\|., ", each character is detected as a separate word. Instead, they should be considered one word, including all the subsequent space characters.

The following functionalities should respect this grouping:
- Caret navigation by words (CTRL + left/right arrow), MoveCaret UI command and the corresponding DocumentPosition methods.
- Selecting word by double clicking.
Declined
Last Updated: 29 Jul 2026 10:57 by ADMIN
'Decrement paragraph left indent' command can set negative left indent which makes bullets/numbering of a list clipped. Instead, it shouldn't be executed if the bullets/numbering would become invisible.

Workaround: Cancel the command in CommandExecuting event:

            this.radRichTextBox.CommandExecuting += (sender, e) =>
            {
                if (e.Command == this.radRichTextBox.Commands.DecrementParagraphLeftIndentCommand)
                {
                    if (this.radRichTextBox.Document.Selection.GetSelectedParagraphs().Any(p => p.IsInList && p.LeftIndent <= 24))
                    {
                        e.Cancel = true;
                    }
                }
            };
Declined
Last Updated: 29 Jul 2026 08:21 by ADMIN
The spacing between the letters is too big.
Declined
Last Updated: 28 Jul 2026 15:02 by ADMIN
The built-in Hyperlink style is not applied to hyperlinks imported from HTML (<a> tag). As a result, the hyperlinks in the document do not have the blue underline.

Workaround: Subscribe for the SetupDocument event of the HtmlDataProvider and set the hyperlinks' style manually.
private void HtmlDataProvider_SetupDocument(object sender, Telerik.Windows.Documents.FormatProviders.SetupDocumentEventArgs e)
{
    StyleDefinition hyperLinkStyle = e.Document.StyleRepository[RadDocumentDefaultStyles.HyperlinkStyleName];
    hyperLinkStyle.SpanProperties.ForeColor = Colors.Green;//Color.FromRgb(0xff, 0x7a, 0xcc);
    var hyperlinks = e.Document.EnumerateChildrenOfType<HyperlinkRangeStart>();

    RadDocumentEditor editor = new RadDocumentEditor(e.Document);
    editor.Document.History.IsEnabled = false;

    foreach (HyperlinkRangeStart hyperlink in hyperlinks)
    {
        e.Document.Selection.SelectAnnotationRange(hyperlink);
        editor.ChangeStyleName(RadDocumentDefaultStyles.HyperlinkStyleName);
    }
    e.Document.Selection.Clear();

    editor.Document.History.IsEnabled = true;
}
Declined
Last Updated: 28 Jul 2026 09:59 by ADMIN
The caret position is incorrect with the custom Gilroy font
Declined
Last Updated: 28 Jul 2026 09:53 by ADMIN
When RadRichTextBox.DocumentInheritsDefaultStyleSettings is set to true, lists in the document are exported to HTML with Verdana font, instead of with the font applied in the UI.

Workaround: Use modification of the document default styles ("Normal") instead of setting DocumentInheritsDefaultStyleSettings  to true, e.g.:
this.radRichTextBox.Document.StyleRepository["Normal"].SpanProperties.FontFamily = new FontFamily("Segoe UI");
In Development
Last Updated: 28 Jul 2026 08:31 by ADMIN
Scheduled for Scheduled for Scheduled for Q3 2026 (August)
When an active RadPane is unpinned, the next RadPane from the group will not display its content, header, and the unpin and close buttons will be disabled. This behavior is present when the PaneActivationMode is set to Previous.

A workaround to this behavior would be to set the PaneActivationMode property to LastActivated.
Unplanned
Last Updated: 28 Jul 2026 07:51 by Martin Ivanov
Currently the TileGroup containers are limited to a minimum of 2x2 grid of tiles. In some situations it could be meaningful to have only a single row or column of tiles. Add public API to allow changing the minimum row/column count.
In Development
Last Updated: 27 Jul 2026 13:40 by ADMIN
Scheduled for Scheduled for Q3 2026 (August)
The DialogClosed event of RadFilePathPicker stops working when the DialogType property is changed.
In Development
Last Updated: 27 Jul 2026 13:39 by ADMIN
Scheduled for Scheduled for Q3 2026 (August)
ExplorerControl or OpenFileDialog with initial path set to "Network\folder\subfolder".
After dialog initialization, while treeview is loading on demand on the left, user sets local path like  "C:\temp\folder"

Expected: Main Pane switches to c:temp\folder
Actual: MainPane stays in the root of the network branch.
In Development
Last Updated: 27 Jul 2026 10:36 by ADMIN
Scheduled for Scheduled for Q3 2026 (August)

The bug happens when we have two or more rows merged in the first column and programmatically, we make the rowDetails for the first row visible, the merged cells of the first column stay merged and are over of the rowDetails, hiding a part of the Row Details:

1 2 3 4 5 6