Completed
Last Updated: 04 Nov 2022 13:38 by ADMIN
Release R2 2022
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 0
Category: ChartView
Type: Feature Request
2

			
Unplanned
Last Updated: 31 Jan 2017 06:41 by ADMIN
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: 09 Mar 2023 06:43 by ADMIN
Release R1 2023
Created by: Marea
Comments: 5
Category: ChartView
Type: Feature Request
8
I would like to be able to create a histogram where both the x and y axis are linear series and where I can specify the start and end position of each bin (not just one). Previously described workarounds include using StepLineSeries and bar series which cannot have two linear series. I cannot use a scatter plot series as they do not provide the step-wise look of the histogram.  Please add this support! 
Completed
Last Updated: 03 Jun 2016 13:13 by ADMIN
Unplanned
Last Updated: 04 Jan 2017 06:34 by ADMIN
Add auto-range ability for the numeric axes that adjusts its range in accordance to the visible/zoomed data to show the data more clearly
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: 08 Apr 2016 13:11 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 0
Category: ChartView
Type: Bug Report
0
The SelectStyle() method of the DefaultVisualStyleSelector is never called

Will be available in R2 2016 Release.
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: 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: 04 Jan 2017 07:34 by ADMIN
MovingAverageIndicator doesn't recalculate its data points when a new item is added in its ItemsSource at runtime

Workaround:
To update the data points of the indicator reset its Period property when a new item is added in the ItemsSource. For example:

// add new item
var indicator = chart.Indicators[0] as MovingAverageIndicator;
var period = indicator.Period;
indicator.Period = 0;
indicator.Period = period;
Completed
Last Updated: 28 Oct 2016 08:52 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 0
Category: ChartView
Type: Feature Request
1
Add support for 3D Series Type in RadChartView.

A RadCartesianChart3D was introduced with R3 2016. You can use its BarSeries3D to easily achieve the Manhattan chart visualization.

See the documentation: 
http://docs.telerik.com/devtools/wpf/controls/radchartview3d/overview
See the SDK examples: 
https://github.com/telerik/xaml-sdk/tree/master/ChartView3D/WPF
See the demos: 
https://demos.telerik.com/wpf/
Completed
Last Updated: 29 Jan 2016 12:16 by ADMIN

Available in LIB version: 2016.1.21
Completed
Last Updated: 28 Apr 2016 13:44 by ADMIN
If you change the axes of a series at runtime in the following order the axis won't be rendered as expected.
1. Set the series' VerticalAxis property to a new axis instance
2. Set the series' VerticalAxis property to another new axis instance
3. Set the series' VerticalAxis property to the axis' instance created in step 1

This is observed in a scenario with two chart series and only the axis of one of the series is drawn incorrect.

When step 3 is performed, the axis is drawn at incorrect position. Then if you resize, the axis will be repositioned but without any ticks or labels.

Available in LIB Version 2015.3.1123.
Unplanned
Last Updated: 03 Jan 2017 21:14 by ADMIN
Workaround:
One way to work around this is to set the plot mode of the axis to OnTicksPadded. 
Completed
Last Updated: 18 Nov 2015 12:25 by ADMIN
The position of non-positive values cannot be determined when using a logarithmic axis (due to the nature of the logarithmic axis, non-positive values are undefined). Currently the chart displays such points as if the value of the point is 1, which is not correct. The chart should not display these values at all.

Unplanned
Last Updated: 03 Jan 2017 21:08 by ADMIN
Currently, RadChartView doesn't support ChartToolTipBehavior for series which are using BitmapRenderOptions or Direct2DRenderOptions. The tooltip doesn't display.
Unplanned
Last Updated: 18 Aug 2020 06:19 by Leon
ADMIN
Created by: Peshito
Comments: 5
Category: ChartView
Type: Feature Request
4
Make the StepLineSeries being able to plot a 'step' for a single point. Currently the StepLine series does not support drawing a single data point when it is in the beginning or the end of the ItemsSource. 
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