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

			
Completed
Last Updated: 29 Jan 2014 15:27 by ADMIN
Bar series with DateTimeContinuousAxis axis with no MajorStep specified. When you zoom the bars gets to big and does not stay within its tick boundaries.
Completed
Last Updated: 02 Apr 2014 11:47 by ADMIN
When adding two BarSeries in code-behind, the second one is not aligned well on the horizontal DateTimeContiniousAxis. It starts from the beginning of the axis, but not the supposed DateTime.
Completed
Last Updated: 04 Apr 2014 13:29 by Telerik Admin
ADMIN
Created by: Petar Marchev
Comments: 1
Category: ChartView
Type: Bug Report
1
Chart is not exported properly when Margin is present.
Completed
Last Updated: 28 Apr 2016 14:16 by ADMIN
Pan/zoom behavior should be configurable whether to execute its logic on right mouse button or left mouse button down.
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: 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
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: 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: 24 Aug 2016 14:44 by ADMIN
The trackball becomes unresponsive in a live data scenario with more than one chart. The issue is observed in a scenario with a categorical axis and grid lines originating from it. 

The fix is available in LIB Version: 2016.2.829.
Completed
Last Updated: 12 Feb 2018 11:37 by ADMIN
The exception is reproducible when you are using SplineSeries with DateTimeContinuousAxis. You need to add data points to the chart with a gap between the dates.
Completed
Last Updated: 10 Oct 2016 14:08 by ADMIN
When a linear axis is used with the same ticks (ticks number and ticks position), and the same plot mode as a categorical axis (BetweenTicks or OnTicks) - the width of the bars is different and is slightly smaller with the linear axis.


Available in LIB version: 2016.3.1017
Completed
Last Updated: 21 Feb 2019 11:20 by ADMIN

When you change series datapoints and then play ChartRevealAnimation the following InvalidOperationException might occur:

 Cannot call the ClockController.SkipToFill method for a Clock that has a Duration or RepeatDuration of Forever, because this Clock will never reach its fill period.
=====
Workaround:
You can try calling PlayAnimation in Dispatcher:

  Dispatcher.BeginInvoke(new Action(() =>
            {
                this.LineSeries1.PlaySeriesAnimation();
            }));

Completed
Last Updated: 07 Mar 2023 16:20 by ADMIN
Release R1 2023 SP

The FadeOtherSeries hover mode doesn't work when the lightweight render options (Direct2D and Bitmap) are used.

You can find one way to work this around in the attached project.

Completed
Last Updated: 16 Apr 2015 14:36 by ADMIN
The fix is available in LIB Version 2015.1.0420.
Completed
Last Updated: 17 Apr 2019 10:09 by ADMIN
Release LIB 2019.1.415 (04/15/2019)
The ToolTip behavior respect how the series are added to the chart. Setting ZIndex property to reorder them will not be respected by the ToolTip.
Completed
Last Updated: 02 Oct 2019 08:48 by ADMIN
Release LIB 2019.3.1007

When you set the Palette property to a new instance of ChartPalette in XAML, a NullReferenceException is thrown. This happens when you click inside the chart control in the Visual Studio designer.

The exception reproduces only if the "Miscellaneous" category in the "Properties" pane of Visual Studio is expanded.

To work this around, set the Palette property in code:

C#:

public MainWindow()
{
    InitializeComponent();
    this.chart.Palette = (ChartPalette)this.Resources("cpBarChart");
}

VB.NET:
Sub New()
    InitializeComponent()
    Me.chart.Palette = DirectCast(Me.Resources("cpBarChart"), ChartPalette)
End Sub

 

 

Completed
Last Updated: 28 Apr 2016 14:19 by ADMIN
Completed
Last Updated: 07 Feb 2020 14:26 by ADMIN
Release LIB 2020.1.210 (2/10/2020)
The start point of the MoveAnimation(Top and Left) is not calculated correctly.
Completed
Last Updated: 09 Jun 2020 08:20 by ADMIN

It appears the ChartView is also affected by the same SharpDX issue that affected the RadWebCam when it is used over Remote Desktop. 

A simple test of any series will replicate the issue. If it is being used via Remote Desktop, the series will not render.