Add built-in support for smart series item labels i.e. automatic label arrangment that ensures the labels do not overlap.
Introduce Annotations ItemsSource property Available in Release Version Q1 2016.
Add the option for having separate PanZoomBars for each axis, so the user can scroll/zoom each axis independently from the other axes.
ChartView: Add support for axes rendering, when no data is available As a workaround add a series with one point and set its color to transparent. <telerik:ScatterLineSeries XValueBinding="." YValueBinding="." Stroke="Transparent"> <telerik:ScatterLineSeries.ItemsSource> <x:Array Type="system:Int32"> <system:Int32>0</system:Int32> </x:Array> </telerik:ScatterLineSeries.ItemsSource> </telerik:ScatterLineSeries>
If two or more data points from the same series have the same X value - it should be possible to show information for all of these data points in the track ball.
Knowing where the cursor is and the associated coordinate and data information is critical to really create highly functional finacial chart. It allows the developer to overlay order tools on the chart like trendlines, possibly even enables the end-user to place an order directly from chart. - Enhance cartesian chart interactivity by enabling the usage of TrackballInfo features without actually showing the trackball e.g. show the OHLC info in the top left corner of the chart (add mouse down/move events as well). - Enable scenarios that need to pass trackball info to other charts e.g. on chart #1 you want to show trackball info for chart #2 at the same time (knowing the trackball info and coordinates of each chart is critical to syncing the track info of another chart that may be below the main chart as stock would want to see the tracking info for all chart simultaneaously). Available in Q2 2015 Release.
Support for displaying error bars
Add support for BoxPlot series type either through enabling extensibility of the CandlestickSeries type, or through providing new built-in BoxPlot series type.
Add support for automatic step calculation for the chart's axes. Available in Q2 2015 Release.
Currently when sampling is used to generate the data points, the DataItem property of the DataPoint is null and there is no way to find out which data items have been used to generate the data point. A new property can be introduced (DataItems) which can contain the data items in mind. Available in R1 2017 Release
Extend ChartSelectionBehavior to support continuous range selection through drag&drop.
Set the DataContext of a Candlestick to be the DataPoint to allow binding to properties of the business object.
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.
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!
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).
Add support for ScatterBar series type i.e. bar series that is plotted against linear / logarithmic axis.
When SnapMode=TrackBallSnapMode.None the IntersectionPoints should be drawn not over DataPoints but over the real intersection between series and TrackBallLine (also the TrackBallControl should display the real calculated intersection value itself). XAML Team reviewed this request and decided not to address it in the future.
Add RangeSeriesDescriptor
Provide a way that the CrossHair behavior looks like theTrackBall's one so that the Crosshair follows just the chart's series. Something like a TrackBall with the horizontal and vertical line of a Crosshair.