Java Swing How to - Show tick marks








Question

We would like to know how to show tick marks.

Answer

//from w w  w  .  j ava2  s  .  com
import javax.swing.JSlider;

public class Main {
  public static void main(String[] argv) throws Exception {
    // Create a horizontal slider that moves left-to-right
    JSlider slider = new JSlider();

    slider.setPaintTicks(true);

  }
}