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()

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

 

 

Completed
Last Updated: 23 Aug 2019 09:37 by ADMIN
Completed
Last Updated: 17 Apr 2019 10:09 by ADMIN
Release LIB 2019.1.415 (04/15/2019)
The ToolTip behavior respect how the series are added to the chart. Setting ZIndex property to reorder them will not be respected by the ToolTip.
Completed
Last Updated: 21 Feb 2019 11:20 by ADMIN

When you change series datapoints and then play ChartRevealAnimation the following InvalidOperationException might occur:

 Cannot call the ClockController.SkipToFill method for a Clock that has a Duration or RepeatDuration of Forever, because this Clock will never reach its fill period.
=====
Workaround:
You can try calling PlayAnimation in Dispatcher:

  Dispatcher.BeginInvoke(new Action(() =>
            {
                this.LineSeries1.PlaySeriesAnimation();
            }));

Completed
Last Updated: 30 Jan 2019 15:16 by ADMIN
If you define the chart in a new window and open it from the app main window, and then close the window, the chart stays in memory. This is reproducible only in a data binding scenario - the ItemsSource of the chart series should be set to a ObservableCollection<T>. 

Additionally, the collection bound to the ItemsSource of the series should be still alive. For example, it can be defined in the view model of the main window that opens the window with the chart.

To resolve this you will need to set the ItemsSource of all chart series in the window to null.

Scheduled for:
The fix for this issue will be available with LIB (version 2019.1.204) scheduled for publishing on Monday, 4th February 2019.
Completed
Last Updated: 17 Jan 2019 11:27 by ADMIN
If two or more data points from the same series have the same X value - it should be possible to show information for all of these data points in the track ball.


This feature is available with our latest official version - R1 2019.
Completed
Last Updated: 19 Oct 2018 13:57 by ADMIN
When you try to set the LabelDefinition property in style it is not applied.

As a workaround you can create an attached property to which you can apply the custom definition and set it to the LabelDefinition property of the annotation in its OnPropertyChangedCallback.
Completed
Last Updated: 19 Oct 2018 10:45 by ADMIN
If the annotation and its label are out of the viewport (the plot area) and then use the PanZoomBar to scroll to it, the label is not displayed. It appears after the chart layout is updated (ex: resize or zoom).
Completed
Last Updated: 14 Jun 2018 05:26 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 1
Category: ChartView
Type: Bug Report
0
On a desktop device the tooltip is shown when the mouse enters the data point's visual element. On touch device the tooltip should be displayed when you tap (or tap and hold) on the visual element. Currently, this doesn't work. 

To work this around you can implement custom tooltip behavior using RadToolTip and TouchManager.

https://docs.telerik.com/devtools/wpf/controls/radtooltip/overview

https://docs.telerik.com/devtools/wpf/controls/touchmanager/overview
Completed
Last Updated: 04 Jun 2018 07:18 by ADMIN
During Series animation, the stroke of the AreaSeries (area, splinearea, scatterarea, steparea) is not animated.
Completed
Last Updated: 11 May 2018 05:52 by ADMIN
ADMIN
Created by: Giuseppe
Comments: 1
Category: ChartView
Type: Feature Request
3
Add support for chart series animations.
Completed
Last Updated: 12 Feb 2018 11:37 by ADMIN
The exception is reproducible when you are using SplineSeries with DateTimeContinuousAxis. You need to add data points to the chart with a gap between the dates.
Completed
Last Updated: 13 Sep 2017 12:50 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 0
Category: ChartView
Type: Feature Request
2
Expose RadFunnelChart and RadFunnelSeries for displaying funnel-like segments. They are usually used for visualizing stages in sales / marketing processes. 

Available in R3 2017 Official Release Version.
Check what's new in R3 2017 here: 
http://www.telerik.com/support/whats-new/wpf/release-history/ui-for-wpf-r3-2017
Completed
Last Updated: 05 Jun 2017 07:32 by ADMIN
When the points in a series consist of values including 0, DivideByZeroException is thrown. The exception is thrown while measuring the chart - the tick step is set to 0 and the index of the tick on the axis cannot be calculated.
 
Workaround: Set the Minimum and Maximum properties of the Axis.


Available in LIB version: 2017.2.605
Completed
Last Updated: 02 Jun 2017 12:42 by ADMIN
A NullReferenceException is thrown when the Strategy of the series is set


Available in LIB version: 2017.2.605
Completed
Last Updated: 25 May 2017 10:18 by Sathya
ADMIN
Created by: Peshito
Comments: 5
Category: ChartView
Type: Feature Request
22
Introduce Annotations ItemsSource property

Available in Release Version Q1 2016.
Completed
Last Updated: 09 Nov 2016 11:18 by Niall
Currently when sampling is used to generate the data points, the DataItem property of the DataPoint is null and there is no way to find out which data items have been used to generate the data point. A new property can be introduced (DataItems) which can contain the data items in mind.

Available in R1 2017 Release