Unplanned
Last Updated: 12 Mar 2019 14:39 by ADMIN
Unplanned
Last Updated: 20 Dec 2016 09:09 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 0
Category: ChartView
Type: Feature Request
1

			
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: 20 May 2024 15:30 by Stenly
Created by: Stenly
Comments: 0
Category: ChartView
Type: Feature Request
0
Add hieken ashi candlesticks series to the available series of the RadChartView control.
Unplanned
Last Updated: 25 Jun 2024 10:42 by Martin Ivanov

Currently the MouseWheel event used to zoom is not handled which means that the event will bubble to the parent elements which can lead to scrolling issues. Add an option to handle the MouseWheel event when the chart zooming is enabled.

To get the desired result, you can handle the MouseWheel event of the chart manually.

 private void RadCartesianChart_MouseWheel(object sender, MouseWheelEventArgs e)
 {
     e.Handled = true;
 }

Unplanned
Last Updated: 04 Mar 2024 07:54 by Martin Ivanov
Add an API in the chart spline series (like a method override or similar) that allows you to calculate your own set of additional points that render the spline in the chart's spline series.
Unplanned
Last Updated: 07 Mar 2024 16:26 by Martin Ivanov
Currently, the categories in the CategoricalAxis are ordered by the order of their appearance in the plotted data. Allow ordering the categories manually.
1 2 3 4