jfreeChart 글꼴 매개 변수 설정

1469 단어 jfreechartUP
/**   
     *     
     * @param chart JFreeChart     
     */   
     private void configFont(JFreeChart chart){   
         //     
         Font xfont = new Font(" ",Font.PLAIN,12) ;// X    
         Font yfont = new Font(" ",Font.PLAIN,12) ;// Y    
         Font kfont = new Font(" ",Font.PLAIN,12) ;//     
         Font titleFont = new Font(" ", Font.BOLD , 25) ; //     
         CategoryPlot plot = chart.getCategoryPlot();//     
           
         //     
         chart.setTitle(new TextTitle(chart.getTitle().getText(),titleFont));   
           
         //     
         chart.getLegend().setItemFont(kfont);   
           
         // X     
         CategoryAxis domainAxis = plot.getDomainAxis();       
         domainAxis.setLabelFont(xfont);//     
         domainAxis.setTickLabelFont(xfont);//       
         domainAxis.setTickLabelPaint(Color.BLUE) ; //     
         domainAxis.setCategoryLabelPositions(CategoryLabelPositions.UP_45); //  label      
           
         // Y     
         ValueAxis rangeAxis = plot.getRangeAxis();       
         rangeAxis.setLabelFont(yfont);     
         rangeAxis.setLabelPaint(Color.BLUE) ; //     
         rangeAxis.setTickLabelFont(yfont);     
           
     }   

좋은 웹페이지 즐겨찾기