Completed
Last Updated: 30 Nov 2020 12:37 by ADMIN
Release LIB 2020.3.1130 (11/30/2020)
When the application starts, the PointAnimation isn't played on PieSeries in a data-bound scenario. Also, this will hide the labels of the segments.
Declined
Last Updated: 29 Oct 2020 15:46 by ADMIN
An InvalidCastException is thrown in the Fill/Background property binding in the series' DefaultVisualStyle when the RenderOptions is set to Bitmap or Direct2D.
Unplanned
Last Updated: 29 Oct 2020 15:46 by ADMIN
Currently, you can customize the fill and stroke of the data point visuals using the DefaultVisualStyle property of the series. In the common scenario, you can use data bindings to data bind the fill and stroke of the corresponding element. Additionally, you can use the DefaultVisualStyleSelector for such customization. However, when the Direct2DRenderOptions or BitmapRenderOptions are used, data bindings and the DefaultVisualStyleSelector are not support. The bindings in the DefaultVisualStyle throw errors and the selector is not applied.

Add support for conditional styling. This should include support for data binding in the fill and stroke properties of the element from the DefaultVisualStyle, or support for DefaultVisualStyleSelector, or another type of API. 
Unplanned
Last Updated: 22 Oct 2020 07:48 by ADMIN
Created by: Dinko
Comments: 0
Category: ChartView
Type: Feature Request
3

Add support for Tornado Chart. You can check this link for more information.

Sample Tornado Chart:


Completed
Last Updated: 14 Oct 2020 13:31 by ADMIN
Release R3 2020 SP1
When the application starts, the PointAnimation isn't played on point series in a data-bound scenario.
Completed
Last Updated: 24 Aug 2020 10:55 by ADMIN
Release LIB 2020.2.824
The Telerik.Windows.Controls.Chart.Direct2D.dll is missing from the nuget package file containing all Telerik dlls (Telerik.UI.For.Wpf).
Unplanned
Last Updated: 18 Aug 2020 06:19 by Leon
ADMIN
Created by: Peshito
Comments: 5
Category: ChartView
Type: Feature Request
4
Make the StepLineSeries being able to plot a 'step' for a single point. Currently the StepLine series does not support drawing a single data point when it is in the beginning or the end of the ItemsSource. 
Completed
Last Updated: 09 Jun 2020 08:20 by ADMIN

It appears the ChartView is also affected by the same SharpDX issue that affected the RadWebCam when it is used over Remote Desktop. 

A simple test of any series will replicate the issue. If it is being used via Remote Desktop, the series will not render.

Won't Fix
Last Updated: 26 May 2020 15:27 by Petar

" Collection was modified; enumeration operation may not execute.'" - The exception is observed when the CLR exceptions are enabled from Visual Studio. 

Edit:

The Ellapsed event handler of the Timer is executed in background thread but modifying chart data in a background thread is considered bad practice which is not supported by our component. This is the reason we are declining this bug report.

General solution is to schedule the data update to happen on the UI thread with Dispatcher. When in ViewModel, the following code can be used:

        private void OnTimerElapsed(object sender, ElapsedEventArgs e)
        {
            ViewModelBase.InvokeOnUIThread(() =>
            {
                for (int i = 0; i < Items.Count; i++)
                {
                    Items[i].X += (_random.NextDouble() - 0.5) * 0.1;
                    Items[i].Y += (_random.NextDouble() - 0.5) * 0.1;
                }
            });
        }
Unplanned
Last Updated: 26 May 2020 06:58 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: ChartView
Type: Feature Request
1
Allow setting OriginValue on the series in the RadPolarChart. Currently, the area series are fixed to OriginValue of 0.

The same feature is available in the RadCartesianChart series.
https://docs.telerik.com/devtools/wpf/controls/radchartview/features/originvalue
Unplanned
Last Updated: 05 Mar 2020 14:57 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: ChartView
Type: Feature Request
1
Currently, you can format the axis labels using the LabelFormat property. This allows the same format to display different label value for the different cultures when the UI culture is changed. 

Add support also for the Language framework property in this case. 
Completed
Last Updated: 07 Feb 2020 14:26 by ADMIN
Release LIB 2020.1.210 (2/10/2020)
The start point of the MoveAnimation(Top and Left) is not calculated correctly.
Completed
Last Updated: 17 Dec 2019 14:08 by ADMIN
Release LIB 2019.3.1223

The VisualStudio2019 ChartPalette (from Telerik.Windows.Controls.ChartView) throws the below exception when using the Telerik .NET Core assemblies. This does not occur when using the Telerik .NET Framework assemblies.


System.IO.IOException: 'Cannot locate resource 'visualization/palettes/resources/visualstudio2019.xml'.'
StackTrace:
   at MS.Internal.AppModel.ResourcePart.GetStreamCore(FileMode mode, FileAccess access)
   at System.IO.Packaging.PackagePart.GetStream(FileMode mode, FileAccess access)
   at MS.Internal.IO.Packaging.PackagePartExtensions.GetSeekableStream(PackagePart packPart, FileMode mode, FileAccess access)
   at MS.Internal.IO.Packaging.PackagePartExtensions.GetSeekableStream(PackagePart packPart)
   at System.Windows.Application.GetResourceStream(Uri uriResource)
   at Telerik.Windows.Controls.ChartView.ChartPalettes.LoadPalette(String fileName)
   at Telerik.Windows.Controls.ChartView.ChartPalettes.get_VisualStudio2019()

Unplanned
Last Updated: 11 Dec 2019 13:46 by ADMIN
Created by: aegir
Comments: 0
Category: ChartView
Type: Feature Request
3
Add support for drill-down functionality.
Unplanned
Last Updated: 08 Nov 2019 15:39 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: ChartView
Type: Feature Request
2

Add a mechanism that allows the chart to process only the data within the viewport. This should improve the memory footprint and the performance of the chart in scenarios with big number of data points.

Unplanned
Last Updated: 06 Nov 2019 09:10 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: ChartView
Type: Feature Request
3
Add ScatterRangeSeries visualization, similar to RangeSeries.
Completed
Last Updated: 10 Oct 2019 10:36 by ADMIN
Release LIB 2019.3.1007
ADMIN
Created by: Petar Marchev
Comments: 1
Category: ChartView
Type: Bug Report
2

			
Completed
Last Updated: 02 Oct 2019 08:48 by ADMIN
Release LIB 2019.3.1007

When you set the Palette property to a new instance of ChartPalette in XAML, a NullReferenceException is thrown. This happens when you click inside the chart control in the Visual Studio designer.

The exception reproduces only if the "Miscellaneous" category in the "Properties" pane of Visual Studio is expanded.

To work this around, set the Palette property in code:

C#:

public MainWindow()
{
    InitializeComponent();
    this.chart.Palette = (ChartPalette)this.Resources("cpBarChart");
}

VB.NET:
Sub New()
    InitializeComponent()
    Me.chart.Palette = DirectCast(Me.Resources("cpBarChart"), ChartPalette)
End Sub

 

 

Declined
Last Updated: 26 Sep 2019 13:19 by ADMIN
You can observe the difference between the ChartView and an Excel Chart with the same data in the attached pictures.
Unplanned
Last Updated: 09 Sep 2019 10:09 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: ChartView
Type: Feature Request
7
Implement a feature that allows you to start an animation when the values of a data point are changed. For example, if you change the value on the vertical axis from 5 to 10, a smooth animation updating the visual element should be started.