I am looking for slide bars with two knobs for a user to move them separately or both together, similar to the one in the picture to use in Java. Any sidebar with two knobs (two indicators) would do. Does it exist?
Asked
Active
Viewed 2,564 times
8
-
4Try taking a look at [**this**](http://harmoniccode.blogspot.com.au/2011/11/friday-fun-component-xiv.html). I've used it in the past and it works well.. – MadProgrammer Jun 26 '13 at 23:40
-
5Cool component. This is getting ridiculous. Every question is getting closed. Somebody tell me how this question should be worded so it doesn't break the idiotic guidelines for asking a question? In 10 years of answering questions on the forums I have no idea where to look to find a component like this. I have no idea what the name of the component would be. Where do I go to get help??? How does pointing a person to a website or library generate opinionated answers? – camickr Jun 27 '13 at 01:22
-
Thanks for the support. I am disparately in the need of this answer and these guys closed my question! – C graphics Jun 27 '13 at 16:32
3 Answers
1
That's called a range slider. Here it is discussed in another thread: Range Slider in Java
Also, here's an API which provides a JRangeSlider swing object: http://prefuse.org/doc/api/prefuse/util/ui/JRangeSlider.html
I've never used it, but it looks like just what you want.
0
i would suggest checking out JIDE (open source components), i know for a fact there is a range slider with two knobs

Andy B
- 328
- 3
- 9
0
Sorry for late answer:)
I recently implemented JRangeSlider without custom painting code, thus it will always look like normal JSlider, but with two knobs.
https://github.com/andronix3/SwingHacks/blob/master/com/smartg/swing/JRangeSlider.java

andronix
- 124
- 9