Unplanned
Last Updated: 18 Oct 2021 12:35 by Guido
Created by: Guido
Comments: 3
Category: ChartView
Type: Bug Report
1

When a chart have long labels on the X axis (like date and time) the zoom is not accurate on the horizontal extents with both mouse wheel and drag area.

The reason is probably that the screen coordinates of the selected area are not mapped correctly on the X axis. The mapping works fine for tooltip.

 

You can verify this behavior in the attached Solution. In the images you can see the selected area (01), that the zoomed area is a region with no points (02) and the actual position of the points.

 

Unplanned
Last Updated: 01 Jun 2021 10:50 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: ChartView
Type: Feature Request
1
The chart series allow empty values, which means that if a data point has a null or NaN value there won't be a visual element drawn on the chart. The financial indicator (a type of chart series) support this, but because of their nature, if an ItemsSource is provided, the null values are threaded as zeroes (the number 0) during the automatic generation of data points. This is because, the data point values are calculated based on a function which includes a combination of the previous data item values. 

Add a mechanism like a method override or a property that can alter this behavior. In this case, if the data item of the generated data point contains a null value, the visual element should be dropped (missing) as in the standard chart series.
Unplanned
Last Updated: 24 Mar 2021 14:47 by Brandon
Convert ZIndex property of the series to dependency property
Declined
Last Updated: 17 May 2021 12:43 by ADMIN

I would like the possibility to change the color of a line depending on the value.

For example:

I have values between -1 to 10.

If the value is -1 I would like the color (or possible the opacity) to change until it goes back to 0 or above.

Completed
Last Updated: 08 Feb 2021 11:40 by ADMIN
Release LIB 2021.1.208 (2/8/2021)
Created by: Dinko
Comments: 0
Category: ChartView
Type: Bug Report
1

Issue1) When no RenderTransformOrigin is set to ScaleAnimation, all slices should be scaled from the pie chart center point. Currently thiss is not true, to better reproduce it , set MaxScale > 1 and notice slices overlap each other at the end of the animation.

Issue2) When RenderTransformOrigin is set to , for example (0, 0), all slices should start animating from topleft corner of the chart. Currently only the first one is animated from top left and all others are animated from pie chart center.

Unplanned
Last Updated: 03 Dec 2020 12:09 by ADMIN
Created by: Dinko
Comments: 0
Category: ChartView
Type: Feature Request
1
More information regarding this functionality can be found in the Smart Labels help article.
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. 
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.
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: 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
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: 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.