I see the method JScrollPane.setWheelScrollingEnabled(boolean) to enable or disable the mouse wheel scrolling. Is there any way to adjust the speed of the scro
JScrollPane.setWheelScrollingEnabled(boolean)
One way would be to set the unit increment of the scrollbar to a larger number:
scrollPane.getVerticalScrollBar().setUnitIncrement(20);