I'm using 2 sliders (each has 2 thumbs for min and max) to help zoom 
in on charts.  In some cases those sliders need to change their min 
and max values.  That I can do but I'm having a hard time changing the 
labels and values.  Those don't seem to be able to accept bindings.  
Can anyone help here?

Thanks

    <mx:HSlider id="xSlider" minimum="0" maximum="{staticMaxX}"
        showTrackHighlight="true"
        dataTipPlacement="top"
        thumbCount="2"
        tickColor="black" 
        snapInterval="1"
        tickInterval="10"
        allowThumbOverlap="false"
        labels="[0, 110]"
        allowTrackClick="false" 
        liveDragging="true"
        values="[0, 110]"
        change="sliderChangeX(event);trace('X');"
    />

Reply via email to