Declined
Last Updated: 05 Jun 2024 11:07 by ADMIN
Created by: Flemming
Comments: 19
Category: UI for UWP
Type: Feature Request
91
https://platform.uno/ has just reached version 2.0, please add support for using UI for UWP in an Uno project.
Declined
Last Updated: 05 Jun 2024 11:04 by ADMIN
Created by: Stefan
Comments: 3
Category: UI for UWP
Type: Feature Request
1

			
Declined
Last Updated: 05 Jun 2024 11:03 by ADMIN
Created by: Daren
Comments: 1
Category: UI for UWP
Type: Feature Request
0

			
Declined
Last Updated: 05 Jun 2024 08:43 by ADMIN
ADMIN
Created by: Kiril Stanoev
Comments: 1
Category: UI for UWP
Type: Feature Request
8
A DataStorage that can be used for both in Windows 8.1 and Windows Phone 8.1 apps.
Completed
Last Updated: 27 Nov 2023 06:26 by ADMIN
Release R2 2023
Created by: Sébastien
Comments: 0
Category: Chart
Type: Bug Report
1
Line Series is not drawn when Chart has only two data points. This is a bug in my opinion, this a line can be drawn from 2 points.
Unplanned
Last Updated: 03 May 2023 13:08 by Sébastien
TelerikChartAxisBorderBrush is not applied when setting in Dark Light ThemeResources from the Telerik Theme Resources https://docs.telerik.com/devtools/universal-windows-platform/common/teleriknamedbrushes 
Unplanned
Last Updated: 19 Dec 2022 07:03 by ADMIN
Inconsistency in Line and Spline series performance
Unplanned
Last Updated: 15 Jul 2022 11:59 by ADMIN

Resizing the window containing a CartesianChart with SplineSeries leads to some incorrect rendering between points:

Unplanned
Last Updated: 05 Jul 2022 10:06 by Bradley
Created by: Bradley
Comments: 0
Category: Chart
Type: Feature Request
1
creation of a line graph on a scatter point chart with gaps in the line when expected values are missing 

Something like this:

Unplanned
Last Updated: 02 Jul 2022 06:30 by Sébastien
If we have a Chart with DateTimeContinuousAxis as horizontal axis, updating its Minimum and Maximum values should update the rendered in the Chart plot area data. However, if for some period (Minimum and Maximum range) there is no data, the current displayed data is not cleared.
Unplanned
Last Updated: 17 Jun 2022 08:44 by David
If you populate the Chart with data through a SeriesDescriptor as explained here: How to Generate a Dynamic Series Using a Collection of Collections, the PointTemplate/PointTemplateSelector is not applied.
Unplanned
Last Updated: 14 Jun 2022 14:05 by David
Created by: David
Comments: 0
Category: Chart
Type: Feature Request
0
Currently the only way to apply different colors to the bars is through the ChartPalette. Provide an option to set the color according to the bound data item.  
Unplanned
Last Updated: 30 May 2022 08:22 by Sébastien
updating data in real-time causes flickering when series are added through the series provider

Workaround: 
Add series to the chart without using the SeriesProvider option.
Unplanned
Last Updated: 09 Nov 2021 10:22 by ADMIN
when applying the filter in a column where the scroll is on the right, all the scroll is reset to the left and the popup moves to another column. 
Unplanned
Last Updated: 01 Feb 2021 05:49 by ADMIN
ADMIN
Created by: Kiril Stanoev
Comments: 4
Category: UI for UWP
Type: Feature Request
12

			
Pending Review
Last Updated: 05 Jan 2021 14:40 by ADMIN
Created by: Piotr
Comments: 1
Category: TimePicker
Type: Bug Report
0

 

 

RadTimePicker objects remain in memory because, in the DateTimePicker class, it subscribe  on event Window.Current.SizeChanged but you never unsubscribe. So it generates memory leaks. The control will never be removed by the GC(garbage collector).

 

 

Source code:

 

 /// <summary>
        /// Initializes a new instance of the <see cref="DateTimePicker"/> class.
        /// </summary>
        protected DateTimePicker()
        {
            var languages = new List<string> { this.CalendarLanguage };
            var calendar = new Windows.Globalization.Calendar(languages, this.CalendarIdentifier, ClockIdentifiers.TwelveHour);
            this.calendarValidator = new CalendarValidator(calendar);
            this.selectorUtcValue = DateTime.SpecifyKind(DateTime.Now, DateTimeKind.Utc);
            this.utcValue = this.selectorUtcValue;
            Window.Current.SizeChanged += this.Current_SizeChanged;
        }

Unplanned
Last Updated: 20 May 2020 07:57 by ADMIN
When the SelectionMode is set to Extended and we try to select items that are not currently visible using Shift + press only the Rows that are currently visible are selected.
Declined
Last Updated: 18 Nov 2019 17:55 by ADMIN

In the RowDetails for a grid item I have a data template column as below.  If I check the checkbox on the first rowdetails item, every first rowdetails item in the entire grid has the check box checked.  Even if the SentToAcctFlag value for that item is False.  If I check one item in the row details I want only that one item to be checked.  Even refreshing the grid data using ItemsSource does not remove the first rowdetails item checked value for each parent record.

 

                                        <telerikGrid:DataGridTemplateColumn Header="To Acct" HeaderStyle="{StaticResource WorkOrderGridColHeader}" SizeMode="Fixed" Width="100"
                                                        CanUserEdit="True" CanUserSort="False" CanUserFilter="False" CanUserResize="False"  >
                                            <telerikGrid:DataGridTemplateColumn.CellContentTemplate >
                                                <DataTemplate>
                                                    <CheckBox IsChecked="{Binding SentToAcctFlag}" Margin="12,1,0,0" IsEnabled="True" Checked="SentToAcct_Checked" Unchecked="SentToAcct_Unchecked" />
                                                </DataTemplate>
                                            </telerikGrid:DataGridTemplateColumn.CellContentTemplate>
                                        </telerikGrid:DataGridTemplateColumn>
 

Unplanned
Last Updated: 05 Aug 2019 13:29 by ADMIN
Created by: Chad
Comments: 0
Category: DataGrid
Type: Feature Request
1

Data can come dynamically from JSON, XML, and SQL.  Without the ability to bind a grid to commonly used structures (like a Newtonsoft JSON, .NET DataTable or Dictionary), this grid has VERY limited use for apps that use modern ways of gathering and managing data (like JSON-Schema).

Pending Review
Last Updated: 25 Jul 2019 18:53 by ADMIN
Created by: Rodolfo
Comments: 1
Category: UI for UWP
Type: Bug Report
0

I am trying to use the chart control in multiple views: Meaning not just one window. I create several windows from the main window. It is not call "windows". It is a view.

It looks like the chart control fails:

 

System.Exception: The application called an interface that was marshalled for a different thread. (Exception from HRESULT: 0x8001010E (RPC_E_WRONG_THREAD))
   at Windows.UI.Xaml.Media.SolidColorBrush.get_Color()
   at Telerik.UI.Xaml.Controls.Chart.ContainerVisualsFactory.ChangeBrushesAccordingToAppTheme()
   at Telerik.UI.Xaml.Controls.Chart.ContainerVisualsFactory.PrepareCartesianAxisLineVisual(CartesianAxis axis, ContainerVisual lineContainer, RadRect layoutSlot, AxisType axisType)
   at Telerik.UI.X

 

Is there a way to fix it ?

 

to understand the concept of multiple views:

 

https://docs.microsoft.com/en-us/windows/uwp/design/layout/show-multiple-views

 

please advise me...

1 2 3 4 5 6