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: 05 Jan 2017 11:08 by ADMIN
PlotArea occasionally stops refreshing in live data scenario with asynchronous updates (multithreading).
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.
Unplanned
Last Updated: 05 Jan 2017 07:58 by Petar
Add support for millisecond sampling interval to ChartDataSource.
Unplanned
Last Updated: 05 Jan 2017 07:58 by Petar
Implement ChartSeriesLabelDefinition properties as DependencyProperties
Unplanned
Last Updated: 05 Jan 2017 07:58 by ADMIN
Numeric axes should be able to specify their PlotMode as categorical axes do (currently numeric axes use hardcoded OnTicks plot mode).
Unplanned
Last Updated: 05 Jan 2017 07:58 by ADMIN
ADMIN
Created by: Ves
Comments: 0
Category: ChartView
Type: Feature Request
3
Users should be able to create custom financial indicators.
Unplanned
Last Updated: 05 Jan 2017 07:58 by ADMIN
Extend ChartSelectionBehavior to support continuous range selection through drag&drop.
Unplanned
Last Updated: 05 Jan 2017 07:58 by ADMIN
When this mode is on - all of the points for which information in the track ball is shown should be on the left hand side of the mouse.
Unplanned
Last Updated: 05 Jan 2017 07:58 by ADMIN
Set the DataContext of a Candlestick to be the DataPoint to allow binding to properties of the business object.
Unplanned
Last Updated: 05 Jan 2017 07:58 by Petar
When this mode is on, information should be displayed for all data points in a given category (as opposed to displaying the closest points taken from different categories).
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.
Unplanned
Last Updated: 05 Jan 2017 07:58 by ADMIN
ADMIN
Created by: Peshito
Comments: 0
Category: ChartView
Type: Feature Request
2
Add grid line style selector
Unplanned
Last Updated: 05 Jan 2017 07:58 by Petar
Created by: Petar
Comments: 0
Category: ChartView
Type: Feature Request
4
Implement Waterfall series type (http://en.wikipedia.org/wiki/Waterfall_chart).
Unplanned
Last Updated: 05 Jan 2017 07:58 by SurgicalScience
Currently plot band and marked zone annotations are not snapped to the ticks when the PlotMode of a CategoricalAxis is BetweenTicks. Instead the annotation starts from the middle of the slot, and from the middle of the bar (when using BarSeries). 

Introduce a way to snap plot band annotations and marked zone annotations to the ticks instead of the middle of the slot of the categorical axis.
Unplanned
Last Updated: 05 Jan 2017 07:58 by ADMIN
ChartDataSource control should perform the sampling operation asynchronously in a background thread so that it is not blocking the UI thread.
Unplanned
Last Updated: 05 Jan 2017 07:58 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: ChartView
Type: Feature Request
5
ChartView: Implement radar column series.
Unplanned
Last Updated: 05 Jan 2017 07:58 by Hakki
ADMIN
Created by: Telerik Admin
Comments: 1
Category: ChartView
Type: Feature Request
7
Allow for the Polar chart to have multiple polar axes so that a user can easily understand what value does a data point have. For example a polar chart with four axes (with the same range) and an axis in each quadrant.
Unplanned
Last Updated: 04 Jan 2017 12:31 by Petar
Created by: Petar
Comments: 0
Category: ChartView
Type: Feature Request
5
Add support for axis with multi-level categories.
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;