Show tick marks for JSlider in Java

Description

The following code shows how to show tick marks for JSlider.

Example


//w  w  w  .j a v a 2 s .co  m

import javax.swing.JFrame;
import javax.swing.JSlider;

public class Main {
  public static void main(String[] args) {
    JFrame f = new JFrame();
    int initValue = 20;
    int minimum = 10;
    int maximum = 100;

    JSlider slider = new JSlider(JSlider.VERTICAL, minimum, maximum, initValue);
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
   
    slider.setPaintTicks(true);
    
    f.add(slider);
    f.pack();
    f.setLocationRelativeTo(null);
    f.setVisible(true);
  }
}

The code above generates the following result.

Show tick marks for JSlider in Java




















Home »
  Java Tutorial »
    Swing »




Action
Border
Color Chooser
Drag and Drop
Event
Font Chooser
JButton
JCheckBox
JComboBox
JDialog
JEditorPane
JFileChooser
JFormattedText
JFrame
JLabel
JList
JOptionPane
JPasswordField
JProgressBar
JRadioButton
JScrollBar
JScrollPane
JSeparator
JSlider
JSpinner
JSplitPane
JTabbedPane
JTable
JTextArea
JTextField
JTextPane
JToggleButton
JToolTip
JTree
Layout
Menu
Timer