Completed
Last Updated: 04 Apr 2019 13:29 by Dimitar
Release R2 2019 (LIB 2019.1.408)
Kun
Created on: 07 Mar 2019 14:05
Category: UI for WinForms
Type: Feature Request
1
RadRangeSelector: Setting the same RadChartView object as an AssociatedControl causes the range selector to go in an invalid state
The issue can be reproduced by setting the AssociatedControl property in the designer and later at run-time.
2 comments
Dimitar
Posted on: 04 Apr 2019 13:29
Hello, 
 
A Fix will be available in LIB Version 2019.1.408 scheduled for April 8th.

Best regards, 
Dimitar
ADMIN
Hristo
Posted on: 07 Mar 2019 14:15
Hi,

A possible workaround is to create a custom RadRangeSelector control: 
public class MyRadRangeSelector : RadRangeSelector
{
    public override string ThemeClassName
    {
        get
        {
            return typeof(RadRangeSelector).FullName;
        }
    }
 
    public new RadControl AssociatedControl
    {
        get
        {
            return base.AssociatedControl;
        }
        set
        {
            if (base.AssociatedControl == value)
                return;
 
            base.AssociatedControl = value;
        }
    }
}


Regards,
Hristo
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.