String columnNames[] = {"Time","MAP","ICP","CPP"};
String dataValues[][]= new String [countery]

table = new JTable( dataValues, columnNames );

I am working on a table and storing string values in dataValues. I am curious to know if there is anyway to increase the font size from the default size (which is I assume regular 11 font). This brings my other question...even font color?

link|improve this question

72% accept rate
feedback

4 Answers

up vote 5 down vote accepted

table.setFont(new Font("Serif", Font.BOLD, 20));

link|improve this answer
thanks, now I am trying to increase the size (width) of the table cells. b/c what is happening is the characters are too big for the cell now. – razshan Jun 9 '11 at 23:07
table.setRowHeight(table.getRowHeight()+gap); – razshan Jun 9 '11 at 23:14
@razshan :-) if harcoded Jtables Font(s), then you have to do same with SetRowHeight, or get HEIGHT from Font – mKorbel Jun 10 '11 at 7:04
feedback

Try implementing your own Custom Renderer, then you'll be able to treat each string as a JLabel and use setFont(...) accordingly.

link|improve this answer
1  
There is no need to create a custom renderer. – camickr Jun 1 '11 at 21:16
@camickr, I'm sorry, but you have to be one of the most annoying users on this site. couldn't you have just up-voted @mKorbel's answer and leave it be? this answer presents a valid option. – mre Jun 1 '11 at 21:38
2  
I did upvote mKorbels answer. I commented (I didn't down vote) on yours because you give misleading information. I don't want the poster to go to all the trouble of creating a custom renderer when the simple solution is one line of code. If you had provided the simple answer and then explained that "for more complex formatting you need to create a custom renderer", I would have upvoted because you would have been first to make the suggestion. I'm glad I'm annoying. I'm tired of people posting misleading or incorrect answers in the hope of getting a few upvotes here and there. – camickr Jun 2 '11 at 1:47
feedback

One option is to set UIManager hints before GUI initialization, e.g.:

FontUIResource font = new FontUIResource("Verdana", Font.PLAIN, 24);
UIManager.put("Table.font", font);
UIManager.put("Table.foreground", Color.RED);
link|improve this answer
feedback

Use HTML instead of the plain String. Set font with the <font> or <span style="..."> tags.

http://download.oracle.com/javase/tutorial/uiswing/components/html.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.