2012-05-03 4 views

ответ

6

Вы пробовали один из тех, кто:

yourAxis.setTickLabelFont(new Font("Arial", Font.BOLD, 10)); //to define a specific font 

или

Font bold = yourAxis.getTickLabelFont().deriveFont(Font.BOLD); 
yourAxis.setTickLabelFont(bold); //to use the existing font, but bold 
+0

+1 для 'deriveFont()'. – trashgod

+0

Ничего себе !! работает!! Большое спасибо.... –

Смежные вопросы