I have a slider with x number of bars that each represent a range of values. Each bar has an upper and lower handle that is used to manipulate the range. The bars can be interconnected, thus, some of the handles will affect two bars(i.e. the handle is in the middle of the two bars), of which, their movements can affect movements of other bars down the chain. Bars can have a max width, and they can still be pushed/pulled while maintaining their max width. My question is, is there a documented algorithm for validating a move where the user attempts to move a handle to value V, which will, in turn, either push or pull all of the connected bars down the chain?
This is a little hard to explain, so hopefully this made sense. I'm not looking for an actual solution, just some algorithms that might help me come to a solution(i.e. the magic google search terms for this type of problem). Thanks for your help.