Unplanned
Last Updated: 03 Jan 2017 20:54 by ADMIN
When there is defined a ChartPanAndZoomBehavior and the axes of the chart are switched at run-time, the orientation of the PanZoomBar elements it is not changed.

Workaround:
Get the PanZoomBar element and set its Orientation property.

private void TrySetOrientation(CartesianAxis axis, Orientation orientation)
{
    var panZoomBar = Telerik.Windows.Controls.ChildrenOfTypeExtensions.FindChildByType<PanZoomBar>(axis);
    if (panZoomBar != null)
    {
        panZoomBar.Orientation = orientation;
    }
}

private void SwapAxes()
{           
    // Swapping code here

    this.Dispatcher.BeginInvoke((Action)(() =>
    {
        this.TrySetOrientation(this.chart.HorizontalAxis, Orientation.Horizontal);
        this.TrySetOrientation(this.chart.VerticalAxis, Orientation.Vertical);
    }));
}
Completed
Last Updated: 28 Apr 2016 14:19 by ADMIN
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.
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: 03 Jan 2017 21:10 by ADMIN
Workaround:
The issue is caused by the MajorTickInterval property, so one way to go is to remove this setting and use the LabelInterval instead. This will plot more ticks than before, but should eliminate the label clip. If the number of ticks bothers you, you can set the MajorTickLength property of the axis to 0 (so that the ticks are not visible) and use a LabelTemplate in which you will include a label and a tick. 

Another, simpler, work-around is to set a right margin of the chart and set the ClipToBounds property of the chart to false.
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: 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: 04 Feb 2016 15:34 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 0
Category: ChartView
Type: Bug Report
1
A design time exception may be thrown in certain scenarios.
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: 13 Oct 2014 13:45 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 0
Category: ChartView
Type: Bug Report
1
If you set the PolarAxis.Maximum property to value which is equal to or less than the smallest value of a series, a DevideByZero exception is thrown.

Fixed in Q3 2014
Completed
Last Updated: 04 Feb 2016 12:45 by ADMIN
ADMIN
Created by: Petar Marchev
Comments: 0
Category: ChartView
Type: Bug Report
0

			
Completed
Last Updated: 26 Aug 2014 12:45 by John
ADMIN
Created by: Pavel R. Pavlov
Comments: 3
Category: ChartView
Type: Bug Report
2
When the ItemsSource of a series is replaced with new collection, the labels of the old series are not cleared.

Fixed in LIB version: 2014.2.714
Completed
Last Updated: 04 Feb 2016 13:26 by ADMIN
Available in 2014 Q3 release.
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: 26 Aug 2014 08:27 by ADMIN
When the LabelTemplate property of the chart's axis is changed at runtime the labels are not resized and they overlap the plot area if they are too long.

Fixed in 2014.2.0630 LIB
Completed
Last Updated: 01 Dec 2014 15:41 by ADMIN
Completed
Last Updated: 22 Aug 2014 14:02 by ADMIN
NullReferenceException on updating data when mouse is over chart's area and trackballinfo is visible. 

To workaround this, remove the TrackBallBehavior when data is updated and add it again on MouseMove.
Completed
Last Updated: 04 Feb 2016 15:36 by ADMIN
Offset appears when chart with no margins and paddings is exported.
Completed
Last Updated: 27 Aug 2014 13:11 by ADMIN
All labels of the LogratihmicAxis display 'zero' in scenarios with small values  (for example: 0.000000000116 or 2.3E-10)