JFree Chart 중국어 난자 원스톱 해결 방법 하나.

1602 단어 jfreechartUP
   1. /** 
   2.      *    
   3.      * @param chart JFreeChart   
   4.      */  
   5.     private void configFont(JFreeChart chart){  
   6.         //    
   7.         Font xfont = new Font(" ",Font.PLAIN,12) ;// X   
   8.         Font yfont = new Font(" ",Font.PLAIN,12) ;// Y   
   9.         Font kfont = new Font(" ",Font.PLAIN,12) ;//    
  10.         Font titleFont = new Font(" ", Font.BOLD , 25) ; //    
  11.         CategoryPlot plot = chart.getCategoryPlot();//    
  12.           
  13.         //    
  14.         chart.setTitle(new TextTitle(chart.getTitle().getText(),titleFont));  
  15.           
  16.         //    
  17.         chart.getLegend().setItemFont(kfont);  
  18.           
  19.         // X    
  20.         CategoryAxis domainAxis = plot.getDomainAxis();     
  21.         domainAxis.setLabelFont(xfont);//    
  22.         domainAxis.setTickLabelFont(xfont);//      
  23.         domainAxis.setTickLabelPaint(Color.BLUE) ; //    
  24.         domainAxis.setCategoryLabelPositions(CategoryLabelPositions.UP_45); //  label    
  25.           
  26.         // Y    
  27.         ValueAxis rangeAxis = plot.getRangeAxis();     
  28.         rangeAxis.setLabelFont(yfont);   
  29.         rangeAxis.setLabelPaint(Color.BLUE) ; //    
  30.         rangeAxis.setTickLabelFont(yfont);    
  31.           
  32.     }  
 

좋은 웹페이지 즐겨찾기