Completed
Last Updated: 28 Apr 2016 14:15 by Viet
Automatic axis range calculation should take into account the visibility of the chart series (i.e. the data points of a collapsed series should not be respected).

Note: This is by design. The range of all series forms the range of the axis. If the user wants the collapsed series not to affect the range of the axis he can remove them.
Completed
Last Updated: 16 Mar 2023 05:46 by ADMIN
Release LIB 2023.1.320 (20 Mar 2023)
ADMIN
Created by: Martin Ivanov
Comments: 0
Category: ChartView
Type: Bug Report
6
The exception can be observed when you a plot data point with value that falls outside of the range of the Decimal type.

As a workaround you can coerce the data before give it to the chart.
Completed
Last Updated: 04 Feb 2016 13:56 by ADMIN
If we set a Palette to RadCartesianChart and then modify the default StrokeThickness and Stroke of a LineSeries via Style, the new Stroke does not apply. The project attached demonstrates the problem.
Completed
Last Updated: 27 Jan 2015 14:05 by ADMIN
"Insert" operation is not supported properly for chart series but is handled like "Add" i.e. RadCartesianChart.Series.Insert(0, series) will not result in inserting the series at zero index but internally it will be added to the end of the collection and it will be treated as last series.

Available in version 2014.3.1215.
Unplanned
Last Updated: 05 Jan 2017 07:58 by ADMIN
When the CartesianPlotBand annotation is bound to the vertical axis its 'From' value doesn't align with the axis.
This changes when resizing.
Completed
Last Updated: 25 Jun 2021 11:42 by ADMIN
Release LIB 2021.2.628 (28 Jun 2021)
Gaps appear between the bars in the stacks when the series are populated with negative and positive values. Check the attached picture.

If you have a scenario with mixed values (positive and negative) use RangeBarSeries instead of BarSeries.
Completed
Last Updated: 16 Apr 2015 15:09 by ADMIN
Unplanned
Last Updated: 03 Jan 2017 20:54 by ADMIN
When the values of the data points have great values and the axis has a very small manual range, the Path element does not render correctly and is at times not visible at all.

Workaround:
A possible way to resolve this is to use the Direct2DRenderOptions. The different render modes use a completely different rendering logic.
<telerik:LineSeries.RenderOptions>
 <telerik:Direct2DRenderOptions />
</telerik:LineSeries.RenderOptions>
Declined
Last Updated: 24 Nov 2014 14:27 by ADMIN
RadPieChart labels are clipped when RadiusFactor is 1.0
Completed
Last Updated: 16 Apr 2014 08:20 by ADMIN
RadPieChart throws an exception whenever is in a DataTemplate of an ItemsControl with over 120 instances. The ItemsControl uses a RadUniformGrid as an ItemsPanel. Project is attached.
Unplanned
Last Updated: 05 Jan 2017 11:07 by Petar
When a System.Windows.Interactivity.EventTrigger is attached to a ChartTrackBallBehavior a XamlParseException is thrown. A possible work-around for this would be to set the CommandParameter to be the parent collection of the behavior and not the behavior itself.
Completed
Last Updated: 15 Oct 2014 13:30 by ADMIN
Created by: Ivan
Comments: 4
Category: ChartView
Type: Bug Report
3
In a chart that displays more than one series, it would great to be able to turn on/off the trackball feature on a per-series basis. (Currently, suppressing the display of data for a given series doesn't prevent the trackball from snapping to points on that series - a weird experience for the user.
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.
Unplanned
Last Updated: 03 Jan 2017 21:12 by ADMIN
Depending on the zoom level and height of chart, sometimes the first (bottom) label of the chart is not rendered when the vertical axis is a categorical one and the plot mode is BetweenTicks or OnTicksPadded. 
Completed
Last Updated: 08 Aug 2016 13:41 by ADMIN
An exception is thrown in design time when a RadCartesianChart is inside a RadExpander and no-xaml binaries are used in combination with VisualStudio 2010.
Unplanned
Last Updated: 13 Jan 2017 13:53 by ADMIN
Some of the data points plotted in the chart are not positioned as expected in a scenario with DateTimeContinuousAxis with SmartLabelsMode=SmartStep and PlotMode=OnTicksPadded or BetweenTicks.
Unplanned
Last Updated: 02 Feb 2017 12:19 by ADMIN
The exception is reproducible when the chart contains series with RenderOptions=Direct2DRenderOptions.

The error message is:

HRESULT: [0x8876086A], Module: [SharpDX.Direct3D9], ApiCode: [D3DERR_NOTAVAILABLE/NotAvailable], Message: Unknown
Unplanned
Last Updated: 03 Jan 2017 21:22 by Magnus
Create  a chartview with a linear axis, set minvalue to 2014-11-21, max = 2014-11-24, create a series with only one datapoint with a date=2014-11-23.
The barchart graph will show a nice bar, but the X-axis will show you 2014-11-21, although the datapoint is for 2014-11-23!
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

			
Unplanned
Last Updated: 21 Jun 2017 11:08 by ADMIN
This is reproducible only when the chart's automation peers are used. For example, they are used by default when you use the chart on a touch screen. Or when an accessibility tool is used on the application with the chart.

You can work it around by disabling the auto peers (http://docs.telerik.com/devtools/wpf/common-ui-automation).

AutomationManager.AutomationMode = AutomationMode.Disabled;
1 2 3 4 5