Unplanned
Last Updated: 31 Jan 2017 06:45 by ADMIN
Currently, if the trackball position is outside the plot area boundaries, the element is not clipped and there is no mechanism that allows clipping it. 

Note: The trackball is the small ellipse that snaps to the data points.
Unplanned
Last Updated: 31 Jan 2017 06:44 by ADMIN
Allow to track points that intercept vertical line from mouse position (as now)  or points that intercept horizontal line from mouse position.
So allow to choose TrackDirection = Horizontal/Vertical

Thanks.
marc.
Unplanned
Last Updated: 03 Jan 2017 21:22 by ADMIN
Workaround: Bind the UpStroke and DownStroke properties of the Candlestick via custom style (which is set to the DefaultVisualStyle property) to properties from the model. Then in the setter of the Close property, can set different color depending on whether the Close is less than Open property.
Unplanned
Last Updated: 31 Jan 2017 06:43 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 0
Category: ChartView
Type: Feature Request
3
Add mechanism for getting the layout slot of the axis
Unplanned
Last Updated: 07 Sep 2016 07:28 by ADMIN
ADMIN
Created by: Petar Marchev
Comments: 0
Category: ChartView
Type: Feature Request
5
Ability to specify a cursor during a drag-to-pan operation. One way to work-around this is to use the attached property in the sample project attached here. 
This is the code needed to start using the solution:
<telerik:RadCartesianChart local:ChartUtilities.PanCursor="Hand" />
Unplanned
Last Updated: 11 Oct 2016 12:45 by Marcello
When thousands of items are displayed, the tooltip and trackball behaviors may become slow, because of inefficient searching for the closest datapoints. Performance can be sped up by implementing a custom search and manually creating a ChartDataContext via the GetDataContext method.
Unplanned
Last Updated: 31 Jan 2017 06:41 by ADMIN
Unplanned
Last Updated: 04 Jan 2017 07:22 by ADMIN
In a multiple series scenario if one series gets removed, an internal axis flag is incorrectly reset resulting in the horizontal axis displaying only one label when SmartLabelsMode is used. One way to work-around this is to add an empty dummy series after removing a real series:

            this.chart1.Series.Remove(EmptyDummySeries);
            if (this.chart1.Series.Count > 0)
            {
                this.chart1.Series.RemoveAt(this.chart1.Series.Count - 1);
                if (this.chart1.Series.Count > 0)
                {
                    this.chart1.Series.Add(EmptyDummySeries);
                }
            }
Unplanned
Last Updated: 04 Jan 2017 06:34 by ADMIN
Add auto-range ability for the numeric axes that adjusts its range in accordance to the visible/zoomed data to show the data more clearly
Unplanned
Last Updated: 03 Jan 2017 21:12 by ADMIN
Depending on the zoom level and height of chart, sometimes the first (bottom) label of the chart is not rendered when the vertical axis is a categorical one and the plot mode is BetweenTicks or OnTicksPadded. 
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;
Unplanned
Last Updated: 03 Jan 2017 21:14 by ADMIN
Workaround:
One way to work around this is to set the plot mode of the axis to OnTicksPadded. 
Unplanned
Last Updated: 03 Jan 2017 21:08 by ADMIN
Currently, RadChartView doesn't support ChartToolTipBehavior for series which are using BitmapRenderOptions or Direct2DRenderOptions. The tooltip doesn't display.
Unplanned
Last Updated: 18 Aug 2020 06:19 by Leon
ADMIN
Created by: Peshito
Comments: 5
Category: ChartView
Type: Feature Request
4
Make the StepLineSeries being able to plot a 'step' for a single point. Currently the StepLine series does not support drawing a single data point when it is in the beginning or the end of the ItemsSource. 
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.
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>
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);
    }));
}