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: 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: 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.
Unplanned
Last Updated: 23 Mar 2018 12:53 by ADMIN
This reproduces when the axis' SmartLabelMode is enabled. For example, set to SmartStep. 

See the attached video.

As a workaround you can disable the smart label mode and manually calculate the range when zooming. You can use its Minimum, Maximum, MajorStep and MajorStepUnit properties.
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.
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: 28 Jul 2017 11:50 by ADMIN
The exception is reproduced only if the Visibility is initially bound to a property that returns Collapsed.

This can be reproduce with the chart indicators that derives from LineIndicatorBase. For example, MovingAverageIndicator or MomentumIndicator.

To resolve this you can bind the Opacity property instead of Visibility.
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;
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.
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
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
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: 03 Jan 2017 21:22 by ADMIN
Workaround: Bind the UpStroke and DownStroke properties of the Candlestick via custom style (which is set to the DefaultVisualStyle property) to properties from the model. Then in the setter of the Close property, can set different color depending on whether the Close is less than Open property.
Completed
Last Updated: 10 Oct 2016 14:08 by ADMIN
When a linear axis is used with the same ticks (ticks number and ticks position), and the same plot mode as a categorical axis (BetweenTicks or OnTicks) - the width of the bars is different and is slightly smaller with the linear axis.


Available in LIB version: 2016.3.1017
Completed
Last Updated: 24 Aug 2016 14:44 by ADMIN
The trackball becomes unresponsive in a live data scenario with more than one chart. The issue is observed in a scenario with a categorical axis and grid lines originating from it. 

The fix is available in LIB Version: 2016.2.829.
Unplanned
Last Updated: 04 Jan 2017 07:22 by ADMIN
In a multiple series scenario if one series gets removed, an internal axis flag is incorrectly reset resulting in the horizontal axis displaying only one label when SmartLabelsMode is used. One way to work-around this is to add an empty dummy series after removing a real series:

            this.chart1.Series.Remove(EmptyDummySeries);
            if (this.chart1.Series.Count > 0)
            {
                this.chart1.Series.RemoveAt(this.chart1.Series.Count - 1);
                if (this.chart1.Series.Count > 0)
                {
                    this.chart1.Series.Add(EmptyDummySeries);
                }
            }
Completed
Last Updated: 03 Jun 2016 13:13 by ADMIN