Completed
Last Updated: 09 Dec 2015 14:02 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 0
Category: ChartView
Type: Feature Request
0
Implement series descriptor for the chart's range series


Will be available in Q1 2016 Release.
Completed
Last Updated: 26 Jan 2016 06:53 by ADMIN
ADMIN
Created by: Petar Marchev
Comments: 0
Category: ChartView
Type: Bug Report
1
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.
Completed
Last Updated: 18 Nov 2015 13:37 by ADMIN
ADMIN
Created by: Petar Marchev
Comments: 0
Category: ChartView
Type: Bug Report
0
In scenarios where a series is removed and after that an axis1 is removed, the other axis2 is rendered incorrectly if a series is added and then axis1 is added back.
Completed
Last Updated: 02 Jun 2016 14:39 by ADMIN
The Open and Close properties of the OhlcSeries' data points are not updated at runtime in a data binding scenario when you update the properties from the view model. The same applies also for the CandlestickSeries.



Available in LIB version: 2016.2.606
Unplanned
Last Updated: 04 Jan 2017 07:16 by ADMIN
The data points are not rendered when the series' axis is set at runtime through a DataTrigger in the series' style. 

Note: The data points are rendered when the chart is resized or zoomed.

Workaround:
Change the resource type in the DataTrigger that changes the axis - instead of DynamicResource, use StaticResource. 

<telerik:CategoricalSeriesDescriptor.Style>
    <Style TargetType="telerik:LineSeries">
        <Style.Triggers>
            <DataTrigger Binding="{Binding Path=Axis}" Value="Left">
                <Setter Property="VerticalAxis" Value="{StaticResource AxisLeft}"/>
            </DataTrigger>
            <DataTrigger Binding="{Binding Path=Axis}" Value="Right">
                <Setter Property="VerticalAxis" Value="{StaticResource AxisRight}"/>
            </DataTrigger>
        </Style.Triggers>
    </Style>
</telerik:CategoricalSeriesDescriptor.Style>
Unplanned
Last Updated: 03 Jan 2017 21:07 by Dietmar.2
Enable the TrackBallInfo to be vertically aligned (e.g. the bottom of the chart).
Unplanned
Last Updated: 03 Jan 2017 21:08 by ADMIN
ADMIN
Created by: Peshito
Comments: 0
Category: ChartView
Type: Feature Request
7
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.
Completed
Last Updated: 16 Apr 2015 14:36 by ADMIN
The fix is available in LIB Version 2015.1.0420.
Completed
Last Updated: 16 Apr 2015 15:09 by ADMIN
Completed
Last Updated: 08 Aug 2016 13:41 by ADMIN
An exception is thrown in design time when a RadCartesianChart is inside a RadExpander and no-xaml binaries are used in combination with VisualStudio 2010.
Completed
Last Updated: 19 Mar 2015 13:32 by ADMIN

Available in LIB version: 2015.1.1603
Unplanned
Last Updated: 03 Jan 2017 20:54 by ADMIN
When the values of the data points have great values and the axis has a very small manual range, the Path element does not render correctly and is at times not visible at all.

Workaround:
A possible way to resolve this is to use the Direct2DRenderOptions. The different render modes use a completely different rendering logic.
<telerik:LineSeries.RenderOptions>
 <telerik:Direct2DRenderOptions />
</telerik:LineSeries.RenderOptions>
Completed
Last Updated: 25 Mar 2015 12:29 by ADMIN
An exception occurs in the VS designer when a RadPieChart is placed in a RadDocking's RadPane.

The fix is available in Q1 2015 SP Release.
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: 19 Nov 2014 17:18 by ADMIN
Declined
Last Updated: 14 Nov 2014 17:52 by ADMIN
Created by: Louis
Comments: 2
Category: ChartView
Type: Feature Request
1
It would be very useful if Charts would support multiple SeriesProviders to be able to plot data of different types without having to artificially consolidate them into a single list with the charting attirbutes exposed via the same properties.
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