

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Set the JSlider vertical and move bottom-to-top in Java
To set the JSlider vertical, use the VERTICAL constant while creating the slider. Let us create a new Slider −
JSlider slider = new JSlider(JSlider.VERTICAL, 0, 100, 60);
The other parameter values set above allows you to include the minimum, maximum and the initial value of the slider.
The following is an example to set the slider vertical and move bottom-to-top −
Example
package my; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.JSlider; import javax.swing.WindowConstants; public class SwingDemo { public static void main(String[] args) { JFrame frame = new JFrame("Frame with Slider"); JSlider slider = new JSlider(JSlider.VERTICAL, 0, 100, 60); slider.setInverted(false); slider.setMinorTickSpacing(5); slider.setMajorTickSpacing(20); slider.setPaintTicks(true); slider.setPaintLabels(true); JPanel panel = new JPanel(); panel.add(slider); frame.add(panel); frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); frame.setSize(600, 300); frame.setVisible(true); } }
Output
- Related Questions & Answers
- Make the JSlider vertical and move top-to-bottom in Java
- Java Program to set the extent in JSlider
- Set the left, right, top and bottom padding of an element
- How to change the position of a JSlider to horizontal/vertical programmatically in Java?
- Set the flex items vertically from bottom to top with CSS
- How to move labels from bottom to top without adding "ticks" in Matplotlib?
- CSS3 top to bottom Gradient
- How to display the JList items from top to bottom and left to right in Java?
- How to create a top-bottom split pane in Java?
- Difference Between Top-down and Bottom-up Parsing
- Difference Between Top-down and Bottom-up Approach
- Difference between Bottom-Up Model and Top-Down Model
- Difference between Top down parsing and Bottom up parsing
- Difference Between Top-down and bottom-up Integration Testing
- How to add a border to the top and bottom of an iOS View?
Advertisements