 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP 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
Java Program to display only vertical grid lines in a JTable
At first, set the setShowGrid() to FALSE to disable all the grid lines. To display only vertical grid lines in a table, set the method setShowVerticalLines() to TRUE. Let us first create a table with rows and columns −
String[][] rec = {    { "1", "Steve", "AUS" },    { "2", "Virat", "IND" },    { "3", "Kane", "NZ" },    { "4", "David", "AUS" },    { "5", "Ben", "ENG" },    { "6", "Eion", "ENG" }, }; String[] header = { "Rank", "Player", "Country" }; JTable table = new JTable(rec, header); Now, display only vertical grid lines −
table.setShowGrid(false); table.setShowVerticalLines(true);
The following is an example to display only vertical grid lines in a JTable −
Example
package my; import java.awt.Color; import javax.swing.BorderFactory; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTable; import javax.swing.border.TitledBorder; public class SwingDemo {    public static void main(String[] args) {       JFrame frame = new JFrame();       JPanel panel = new JPanel();       panel.setBorder(BorderFactory.createTitledBorder(          BorderFactory.createEtchedBorder(), "ODI Rankings", TitledBorder.CENTER, TitledBorder.TOP));       String[][] rec = {          { "1", "Steve", "AUS" },          { "2", "Virat", "IND" },          { "3", "Kane", "NZ" },          { "4", "David", "AUS" },          { "5", "Ben", "ENG" },          { "6", "Eion", "ENG" },       };       String[] header = { "Rank", "Player", "Country" };       JTable table = new JTable(rec, header);       table.setGridColor(Color.blue);       table.setRowSelectionAllowed(true);       table.setShowGrid(false);       table.setShowVerticalLines(true);       panel.add(new JScrollPane(table));       frame.add(panel);       frame.setSize(550, 400);       frame.setVisible(true);    } }  Output

Advertisements
 