Available in LIB Version 2015.2.907.
Add support for bubble series.
Implement RangeSplineAreaSeries
Add RangeSeriesDescriptor
Pan/zoom behavior should be configurable whether to execute its logic on right mouse button or left mouse button down.
Provide way for specifying a minimum effective size of the zoom rectangle, so that accidental clicks can be ignored.
Automatic axis range calculation should take into account the visibility of the chart series (i.e. the data points of a collapsed series should not be respected). Note: This is by design. The range of all series forms the range of the axis. If the user wants the collapsed series not to affect the range of the axis he can remove them.
Currently it is only possible to get the Actual Minimum and Maximum of the Linear axis, but it is not possible to track change notifications. Needed properties should be introduced so that it is possible to track the Actual Min and Max (with and without the ZoomAndPan behavior). Available in Q3 2014 SP1 Release.
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.
The SelectStyle() method of the DefaultVisualStyleSelector is never called Will be available in R2 2016 Release.
Offset appears when chart with no margins and paddings is exported.
A design time exception may be thrown in certain scenarios.
If we set a Palette to RadCartesianChart and then modify the default StrokeThickness and Stroke of a LineSeries via Style, the new Stroke does not apply. The project attached demonstrates the problem.
Available in 2014 Q3 release.
A NullReferenceException is thrown when the Visibility of a CartesianCustomAnnotation is initally set to Collapsed in XAML
Available in LIB version: 2016.1.21
When there are no data points in the bar series, the chart fails to retrieve a color for the marker of the legend item. This can be worked around by modifying the item template of the legend item. In the new template the binding of the Fill of the marker, should include not just the MarkerFill but TargetNullValue: <DataTemplate x:Key="legendItemContentTemplate1"> <StackPanel Orientation="Horizontal"> <Path Fill="{Binding MarkerFill, TargetNullValue=#9B25B1}" Width="12" Height="12"> <Path.Data> <Binding Path="ActualMarkerGeometry" RelativeSource="{RelativeSource AncestorType=telerik:LegendItemControl}" /> </Path.Data> </Path> <TextBlock Margin="2" Text="{Binding Title}" /> </StackPanel> </DataTemplate> Will be available in Q2 2016 Release.