Completed
Last Updated: 16 Oct 2014 08:17 by ADMIN
ADMIN
George
Created on: 11 Jul 2014 12:10
Category: RangeSelector
Type: Bug Report
1
FIX. RadRangeSelector - Setting StartRange and EndRange does not update the layout
To reproduce:

Add a RadChartView and add some data. Add a RadRangeSelector and set the AssociatedControl to be the chart.  On a button click set the Start and EndRange of the range selector. You will see in the chart that the range will not update.

Workaround:

Update the view manually:

this.rangeSelector.StartRange = 30;
this.rangeSelector.EndRange = 60;
(this.rangeSelector.RangeSelectorElement.AssociatedElement as IRangeSelectorElement).UpdateAssociatedView();
0 comments