Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2092
XamNumericRangeSlider and thumbs
posted

I have a case with XamNumericRangeSlider and four thumbs, They are all added in XAML. I have binded slider MinValue and MaxValue to a properties in my ViewModel. The binding seems to break the thumbs. I have hard-coded the thumb values for testing purposes and they work fine if I hard-code also my MinValue and MaxValue. But now that I have them binded to ViewModel, all the thumbs are created to value 0. 

Are there some rules that need to be followed that I don't know. I'm using the latest 11.2 version of the slider. 

P.S. There is no help documentation available for the version 11.2? When it's coming?

Parents
No Data
Reply
  • 1670
    posted

    Hello anttisimonen,

    The ling for online documentation can be found here - http://help.infragistics.com/Doc/Silverlight/2011.2/CLR4.0/?page=NetAdvantage_Silverlight.html.

    About slider - XamNumericRange and XamNumeric sliders have MinValue and MaxValue set to 0 and 100 by default. If you want to bind thumbs values you should be aware that when the value of the thumb is out of the range between MinValue and MaxValue, it won't be correct and will be assigned the value of the MinValue of the slider. You should make sure that MinValue and MaxValue are initilised before the Value of all thumbs, in order everything to be handled correctly by the slider.

    Please respond if that is answering your question!

    Regards,

    Nikola.

Children