2017-10-06 11 views
1

Jfreechartを使用してドーナツチャートを作成しています。区切り線を削除したい(緑色のセクションと白いセクションの間の線) - この行はグラフの部分を超えています。私はそれをグラフの幅に制限する必要があります。 。あなたがはっきりチャートパイ外extentedセクション区切り線を見ることができます(青い円でマーク)は、この追加画像で enter image description herejfree chart - ドーナツチャートのセパレータラインを削除するには

:以下

は、実際と予想チャートです。私はその延長線を取り除く必要があり、セクション区切り線は実際のパイエリアを越えるべきではありません。

これを達成するのに手伝ってください。以下は

私が使用しているコードです:

import java.awt.Color; 
import java.awt.Dimension; 
import java.awt.Font; 
import java.awt.Graphics2D; 
import java.awt.geom.Rectangle2D; 
import javax.swing.JPanel; 

import org.jfree.chart.ChartPanel; 
import org.jfree.chart.JFreeChart; 
import org.jfree.chart.plot.PiePlotState; 
import org.jfree.chart.plot.RingPlot; 
import org.jfree.data.general.DefaultPieDataset; 
import org.jfree.data.general.PieDataset; 
import org.jfree.text.TextUtilities; 
import org.jfree.ui.ApplicationFrame; 
import org.jfree.ui.RectangleInsets; 
import org.jfree.ui.RefineryUtilities; 
import org.jfree.ui.TextAnchor; 
public class DonutChart extends ApplicationFrame { 

    private static final long serialVersionUID = 1L; 

    static class CustomRingPlot extends RingPlot { 

     private Font centerTextFont;  
     private Color centerTextColor; 

     public CustomRingPlot(PieDataset dataset) { 
      super(dataset); 
      this.centerTextFont = new Font(Font.SANS_SERIF, Font.BOLD, 24); 
      this.centerTextColor = Color.BLACK; 
     } 

     @Override 
     protected void drawItem(Graphics2D g2, int section, 
       Rectangle2D dataArea, PiePlotState state, int currentPass) { 
      super.drawItem(g2, section, dataArea, state, currentPass); 
      if (currentPass == 1 && section == 0) { 
       Number n = this.getDataset().getValue(section); 
       g2.setFont(this.centerTextFont); 
       g2.setPaint(this.centerTextColor); 
       TextUtilities.drawAlignedString(n.toString(), g2, 
         (float) dataArea.getCenterX(), 
         (float) dataArea.getCenterY(), 
         TextAnchor.CENTER); 
      } 
     } 
    } 

    public DonutChart(String title) { 
     super(title); 
     setContentPane(createDemoPanel()); 
    } 

    private static PieDataset createDataset() { 
     DefaultPieDataset dataset = new DefaultPieDataset(); 
     dataset.setValue("A", 71); 
     dataset.setValue("B", 29); 
     return dataset; 
    } 

    private static JFreeChart createChart(PieDataset dataset) { 
     CustomRingPlot plot = new CustomRingPlot(dataset); 
     JFreeChart chart = new JFreeChart("", 
       JFreeChart.DEFAULT_TITLE_FONT, plot, false); 
     plot.setBackgroundPaint(null); 
     plot.setOutlineVisible(false); 
     plot.setLabelGenerator(null); 
     plot.setSectionPaint("A", Color.RED); 
     plot.setSectionPaint("B", Color.WHITE); 
     plot.setSectionDepth(0.5); 
     plot.setSectionOutlinesVisible(true); 
     plot.setSectionOutlinePaint(Color.RED); 
     plot.setShadowPaint(null); 
     return chart; 
    } 

    public static JPanel createDemoPanel() { 
     JFreeChart chart = createChart(createDataset()); 
     chart.setPadding(new RectangleInsets(4, 8, 2, 2)); 
     ChartPanel panel = new ChartPanel(chart); 
     panel.setMouseWheelEnabled(true); 
     panel.setPreferredSize(new Dimension(600, 300)); 
     return panel; 
    } 

    public static void main(String[] args) { 
     RingChartDemo1 demo = new RingChartDemo1("JFreeChart: Ring Chart Demo 1"); 
     demo.pack(); 
     RefineryUtilities.centerFrameOnScreen(demo); 
     demo.setVisible(true); 
    } 
} 
+0

あなたの例では、コンパイル、および 'setSectionOutlinePaint()'は推奨されませんあなたの呼び出しはありません。それに応じてあなたの質問を編集してください。また、著作権を復元し、[オリジナル](http://www.jfree.org/jfreechart/samples.html)を引用してください。 – trashgod

答えて

3

を観察したラインは、いわゆる「区切り」行です。 RingPlotには、それらを制御するいくつかの方法があります。そのうち、setSeparatorsVisible(boolean)を参照してください。

createChart()メソッドでplot.setSeparatorsVisible(false)を呼び出すと、これらの行を非表示にすることができます。

image

関連する問題