Hello,
I need to implement a slider with an increment of 5.
JSlider slider = new JSlider(0, 100, 5);
I do not want to paint minor ticks and use slider.setPaintTicks(true);
I need to be able to use a slider (slider's thumb) with an increment.
Is there anyway to implement a slider with an increment?