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: 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: 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: 04 Feb 2016 13:34 by ADMIN
Completed
Last Updated: 22 Nov 2013 09:11 by ADMIN
The ToolTip's style is missing in the no xaml assemblies in Expression_Dark and Office2013 themes. A work-around is to manually include the tool tip's style (for example in the App.xaml).
Completed
Last Updated: 29 May 2023 08:54 by ADMIN
Release R2 2023

The trackball visuals are the ellipses that snap to the data points when you enable the trackball behavior and hover the plot area. If a trackball is displayed and you zoom-in (via mouse wheel) or pan (via drag), the trackball visuals stay on the proper data point as expected. However, if the zoom-in forces the corresponding data point to go outside the viewport, the trackball follows it and it doesn't get hidden (because it is outside the viewport/plot area).

To work this around, you can manually hide the Ellipse visuals.

private void RadChart_PanOffsetChanged(object sender, Telerik.Windows.Controls.ChartView.ChartPanOffsetChangedEventArgs e)
{
	Dispatcher.BeginInvoke(new Action(() =>
	{
		var chart = (RadCartesianChart)sender;
		var trackballs = chart.ChildrenOfType<Ellipse>().Where(x => x.DataContext is DataPointInfo);
		foreach (Ellipse visual in trackballs)
		{
			var dpInfo = (DataPointInfo)visual.DataContext;
			RadRect dpSlot = dpInfo.DataPoint.LayoutSlot;
			if (!chart.PlotAreaClip.Contains(dpSlot.X, dpSlot.Y))
			{
				visual.Opacity = 0;
			}
			else
			{
				if (visual.Opacity == 0)
				{
					visual.Opacity = 1;
				}
			}
		}
	}));
}

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: 19 Mar 2015 13:32 by ADMIN

Available in LIB version: 2015.1.1603
Completed
Last Updated: 25 Mar 2015 12:29 by ADMIN
An exception occurs in the VS designer when a RadPieChart is placed in a RadDocking's RadPane.

The fix is available in Q1 2015 SP Release.
Completed
Last Updated: 11 Feb 2015 16:21 by ADMIN
This can easily be resolved by using a Dispatcher.BeginInvoke to delay the adding of the element. 

The fix is available in LIB Version: 2014.3.1402.
Completed
Last Updated: 19 Nov 2014 17:18 by ADMIN
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: 04 Feb 2016 12:46 by ADMIN
A NullReferenceException is thrown when the Visibility of a CartesianCustomAnnotation  is initally set to Collapsed in XAML
Completed
Last Updated: 19 Jan 2016 09:29 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 0
Category: ChartView
Type: Feature Request
0
Allow Area ( and ScatterArea ) series origin to be set at a number, different than 0.

Available in Q1 2016 Release.
Completed
Last Updated: 15 Oct 2014 14:36 by ADMIN
The StrokeDashArray property is no applied when you set it on the Path element in the StrokeShapeStyle of a line series

Fixed in Q3 2014
Completed
Last Updated: 14 Oct 2014 09:04 by ADMIN
Missing annotation when the chart is placed inside TabControl and its PanZoomBars are collapsed through an implicit style. The annotation is displayed after resize or any other action that triggers redrawing of the control.

As a side note, this behavior occurs only if there is no pan and zoom behavior added in the Behaviors collection of the chart.

Fixed in Q3 2014
Completed
Last Updated: 28 Apr 2016 14:17 by Marco
ADMIN
Created by: Pavel R. Pavlov
Comments: 1
Category: ChartView
Type: Feature Request
0
Add support for bubble series.
Completed
Last Updated: 28 Aug 2014 14:24 by ADMIN
ADMIN
Created by: Petar Marchev
Comments: 0
Category: ChartView
Type: Feature Request
0
Fix is available in LIB version 2014.2.0901
Completed
Last Updated: 28 Apr 2016 14:17 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 0
Category: ChartView
Type: Feature Request
0
Implement RangeSplineAreaSeries
Completed
Last Updated: 04 Feb 2016 12:45 by ADMIN
ADMIN
Created by: Petar Marchev
Comments: 0
Category: ChartView
Type: Bug Report
0